chat-ui / src /lib /types /User.ts
coyotte508's picture
coyotte508 HF staff
✨ Backend preparation for "Sign in with HF" (#190)
2e28042 unverified
raw history blame
No virus
292 Bytes
import type { ObjectId } from "mongodb";
import type { Timestamps } from "./Timestamps";
export interface User extends Timestamps {
_id: ObjectId;
username: string;
name: string;
avatarUrl: string;
hfUserId: string;
// Session identifier, stored in the cookie
sessionId?: string;
}