import { OptionsBase, ComponentModelBase } from '../../../../shared-form/models'; import { InputState } from '../../../../shared-form/enums'; export interface ContentFileOptionsBase extends OptionsBase { fileId?: string; fileName?: string; fileSize?: number; inputState: InputState; } export interface ContentFileModel extends ComponentModelBase { options: ContentFileOptionsBase; }