File size: 309 Bytes
2e28042
 
 
 
 
 
fa3b3b4
2e28042
fa3b3b4
2e28042
 
 
 
64d3841
2e28042
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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;

	// Session identifier, stored in the cookie
	sessionId: string;
}