Skip to content
Snippets Groups Projects
customPopup.model.ts 246 B
Newer Older
  • Learn to ignore specific revisions
  • Bastien DUMONT's avatar
    Bastien DUMONT committed
    import { durationType } from './durationOptions.model'
    
    Bastien DUMONT's avatar
    Bastien DUMONT committed
    export interface ICustomPopup {
      description: string
      popupEnabled: boolean
    
      endDate: string
    
    Bastien DUMONT's avatar
    Bastien DUMONT committed
      title: string
    }
    
    
    export interface PopupDuration {
      type: durationType
      duration: number
    }