Esteves Enzo
infinite scroll + fix nsfw check + input doesnt allow to edit
848e268
raw
history blame
312 Bytes
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;
}