comfyuiman's picture
Upload 15 files
8c29893 verified
raw
history blame contribute delete
379 Bytes
export enum GenerationStatus {
IDLE = 'idle',
GENERATING = 'generating',
CHECKING = 'checking',
SUCCESS = 'success',
ERROR = 'error',
}
export interface MediaFile {
id: string;
file: File;
previewUrl: string;
caption: string;
status: GenerationStatus;
errorMessage?: string;
isSelected: boolean;
customInstructions: string;
qualityScore?: number;
}