Files
medicalalert-web-reloaded/wp/wp-content/plugins/leadin/scripts/shared/enums/loadState.ts
2024-06-17 14:42:23 -04:00

12 lines
234 B
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;