import type { FileUploaderFileId } from './id';
import type { FileUploaderFileStatus } from './status';
export type FileUploaderFileInfo = {
id: FileUploaderFileId;
name: string;
format: string | null;
description: string;
status: FileUploaderFileStatus;
errorMessage?: string;
};