import { Status } from '../common'; export type UploadError = { message: string; [key: string]: any; } | string; export type UploadResponse = { /** * Response must include a unique file id (used for deletion/identification) */ id: string | number; /** * Optional URL for the uploaded file */ url?: string; /** * Optionally sets translated error message when a file gets rejected */ error?: UploadError; /** * Optionally sets translated error messages when a file gets rejected */ errors?: UploadError[]; [key: string]: any; }; export type UploadedFile = { /** * A unique id that is used for deleting the file and as a key */ id: string | number; /** * The original filename of the uploaded file */ filename?: string; /** * Optional. Current status of the file. If not defined, we treat the file as Status.SUCCEEDED */ status?: Status; /** * Any API errors. The message should be localized. */ error?: UploadError; /** * Any API errors array. The messages should be localized. */ errors?: UploadError[]; /** * Optional. An external URL where the file can be opened from. */ url?: string; /** * Any additional data */ [key: string]: any; }; //# sourceMappingURL=types.d.ts.map