Skip to content
Snippets Groups Projects
global.model.ts 807 B
Newer Older
  • Learn to ignore specific revisions
  • import { FluidType } from 'enum/fluid.enum'
    
    import { ScreenType } from 'enum/screen.enum'
    
    import { TermsStatus } from 'models'
    
    Bastien DUMONT's avatar
    Bastien DUMONT committed
    import { CustomPopup } from './customPopup.model'
    
    import { FluidStatus } from './fluid.model'
    
    import { PartnersInfo } from './partnersInfo.model'
    
    import { ReleaseNotes } from './releaseNotes.model'
    
    import { SgeStore } from './sgeStore.model'
    
    
    export interface GlobalState {
      screenType: ScreenType
    
      challengeExplorationNotification: boolean
      challengeActionNotification: boolean
      challengeDuelNotification: boolean
    
      analysisNotification: boolean
    
      termsStatus: TermsStatus
    
      fluidStatus: FluidStatus[]
      fluidTypes: FluidType[]
    
    Bastien DUMONT's avatar
    Bastien DUMONT committed
      customPopupModal: CustomPopup
    
      sgeConnect: SgeStore
    
      partnersInfo: PartnersInfo