pinia.types.ts 364 B

123456789101112131415
  1. export interface GlobalState {
  2. globalLoading: boolean
  3. routerLoading: boolean
  4. requestLoading: boolean
  5. fullScreenLoading: boolean
  6. ISLocal: boolean
  7. ISDEV: boolean
  8. ISPRE: boolean
  9. ISPROD: boolean
  10. isPageSwitching: boolean
  11. theme: string
  12. statusBarHeight: number
  13. mode: 'customer' | 'ib' | 'follow'
  14. applyStatus: boolean
  15. }