deepsite / utils /types.ts
enzostvs's picture
enzostvs HF Staff
DeepSite v2 🐳
f6f8d55
raw
history blame contribute delete
202 Bytes
export interface Auth {
preferred_username: string;
picture: string;
name: string;
isLocalUse?: boolean;
}
export interface HtmlHistory {
html: string;
createdAt: Date;
prompt: string;
}