Attrs[keyof Attrs];
type OptionItem = {value: string; text: string};
type PeriodValue = {from: string; to: string};
type ComponentType = 'input' | 'select' | 'date';
export interface IControl {
id?: string;
label: string;
type: ComponentType;
options?: Array<OptionItem>;
value?: string | PeriodValue;
manualInput?: boolean;
}
export default class extends Model<IControl> {}
Этот конструктор обернут в дженерик?
Обсуждают сегодня