export interface IFileModel { active: boolean; client_id: string; create_at: number; current_version: number; current_version_size: number; external_id: string; id: string; locked: boolean; lockedAt: number; lockedBy: string; name: string; owner: string; parent_id: string; path: string; project_id: string; update_at: number; versions: IVersionModel[]; isFolder: boolean; isChecked: boolean; isJobComplete: boolean; } export interface IFolderModel { active: boolean; client_id: string; create_at: number; external_id: string; id: string; locked: boolean; lockedAt: number; lockedBy: string; name: string; owner: string; parent_id: string; path: string; update_at: number; user_data: string; isFolder: boolean; isChecked: boolean; } export interface IFileListModel { file_count: number; files: IFileModel[]; folder_count: number; folders: IFolderModel[]; } export interface IParamsForGetFile { accountId: string; projectId: string; folderId: string; folderName: string; parentId: string; } export interface IParamsForPostFolder { accountId: string; projectId: string; folderId: string; body: { name: string; }; } export interface IFilePageStackModel { grandparentId: string; parentId: string; folderName: string; } export interface IFolderInfoModel { accountId: string; projectId: string; folderId: string; parentId: string; name: string; owner: string; clientId: string; path: string; createAt: string; updataAt: string; active: boolean; } export interface IVersionModel { active: boolean; comments: string; create_at: number; entry_id: string; id: number; owner: string; size: number; update_at: number; version: number; } export interface IModelInfo { } //# sourceMappingURL=file-model.d.ts.map