Skip to content
Snippets Groups Projects
cutomPopup.model.ts 245 B
Newer Older
  • Learn to ignore specific revisions
  • import { durationType } from './durationOptios.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
    }