Spaces:
Runtime error
Runtime error
File size: 312 Bytes
5881efa 848e268 0891679 5881efa 5240c42 0891679 5881efa |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
export interface Collection {
pagination: {
page: number,
total: number,
total_pages: number
},
images: Array<Image>,
}
export interface Image {
id: string;
blob: {
type: string;
data: ArrayBuffer
};
prompt: string;
createdAt: string;
error?: string;
loading?: boolean;
} |