chat-ui / src /lib /types /User.ts
zacps's picture
Make compatible with Microsoft Entra (v1 and v2 tokens) (#821)
6244c37 unverified
raw history blame
No virus
255 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 | undefined;
hfUserId: string;
}