pinia.types.ts 300 B

12345678910111213
  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. }