File size: 251 Bytes
faca43f
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
import type { Timestamps } from "./Timestamps";

export interface User extends Timestamps {
	username?: string;
	name: string;
	email?: string;
	avatarUrl: string;
	hfUserId: string;

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