chat-ui / src /lib /types /User.ts
nsarrazin's picture
nsarrazin HF staff
Session management improvements: Multi sessions, renew on login/logout (#603)
e4a770a unverified
raw history blame
No virus
243 Bytes
import type { ObjectId } from "mongodb";
import type { Timestamps } from "./Timestamps";
export interface User extends Timestamps {
_id: ObjectId;
username?: string;
name: string;
email?: string;
avatarUrl: string;
hfUserId: string;
}