import { SingleSelectIdText } from "@annalib/anna-design-components-lib"; import { NgbDate } from "@ng-bootstrap/ng-bootstrap"; export interface PrimaryInfoDropdowns { advertisers: SingleSelectIdText[]; agencies: SingleSelectIdText[]; postingTypes: SingleSelectIdText[]; demos: SingleSelectIdText[]; spotDurations: SingleSelectIdText[]; productCodes: SingleSelectIdText[]; } export interface PrimaryInfoSelectedData { advertiser: SingleSelectIdText; agency?: SingleSelectIdText; buyerContactName?: string; buyerContactEmail?: string; buyerContactPhone?: string; campaignName: string; buyerEstimate: string; startDate: NgbDate; endDate: NgbDate; postingType: SingleSelectIdText; demo: SingleSelectIdText; spotDurations: SingleSelectIdText; productCode: SingleSelectIdText; productDesc: string; }