Panno-AI-API / src /types /index.ts
GitHub Actions Bot
Sync: Thu Feb 12 07:00:42 UTC 2026
dce7eca
raw
history blame contribute delete
270 Bytes
export interface Panorama {
id: string;
url: string;
prompt: string;
timestamp: Date;
}
export interface UserSession {
user: {
name?: string | null;
email?: string | null;
image?: string | null;
id?: string;
};
}