import { durationType } from './durationOptions.model' export interface ICustomPopup { description: string image: string popupEnabled: boolean endDate: string title: string } export interface PopupDuration { type: durationType /** number of days or hours */ duration: number }