import { Dependency } from './dependency.types'; import { OptionDataInterface } from '../../option/base/optionData.interface'; export interface QuestionDataInterface { id: string; text: string; type: string; priority: number; dependency?: Dependency; max_checked_option_cnt?: number; min_checked_option_cnt?: number; options: { [option_id: string]: OptionDataInterface; }; canHaveQuotaOptions: boolean; }