Viewing File: /home/maglabs/greentech/wp-content/plugins/leadin/scripts/shared/enums/loadState.ts

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;
Back to Directory File Manager