UNPKG

fenextjs-interface

Version:
18 lines (17 loc) 371 B
export declare enum FileStatus { "NONE" = "NONE", "APPROVED" = "APPROVED", "PENDING" = "PENDING", "REFUSED" = "REFUSED" } export interface FileProps { file?: File; uuid?: string; id?: string; text?: string; extend?: string; fileData: any; base64?: string; url?: string; status?: FileStatus | keyof typeof FileStatus; }