piclets / src /lib /db /schema.ts
Fraser's picture
monsters
ececfe6
raw
history blame
164 Bytes
export interface Monster {
id?: number;
name: string;
imageUrl: string;
imageCaption: string;
concept: string;
imagePrompt: string;
createdAt: Date;
}