blob: b56eda6cb2a6f47c08a8c6d79a4e72577290b15f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
import type { UserRole } from "./roles";
export interface User {
username: string;
email: string;
display_name: string;
bio: string;
birthday: string | null;
avatar_url: string;
blinkie_url: string;
website: string;
location: string;
pronouns: string;
signature: string;
role: UserRole;
created_at: string;
}
|