# leadin/11.0.7/scripts/shared/enums/loadState.ts

HubSpot All-In-One Marketing – Forms, Popups, Live Chat, version 11.0.7. 12 lines.

- Page: https://pluginprobe.com/plugins/leadin/11.0.7/code/scripts/shared/enums/loadState.ts
- Raw: https://pluginprobe.com/plugins/leadin/11.0.7/raw/scripts/shared/enums/loadState.ts
- Modified: 2024-03-06T11:43:04+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/leadin/11.0.7/code/scripts/shared/enums/loadState.ts#L10-L20`.

```typescript
const LoadState = {
  NotLoaded: 'NotLoaded',
  Loading: 'Loading',
  Loaded: 'Loaded',
  Idle: 'Idle',
  Failed: 'Failed',
} as const;

export type LoadStateType = typeof LoadState[keyof typeof LoadState];

export default LoadState;

```
