summaryrefslogtreecommitdiff
path: root/backend/src/types/user.ts
blob: 875072c06f4f638f384617b5c1d57270341d70f9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
export type AdminCreationResult = {
    id: string;
    email: string;
    created_at: Date;
};

export type AuthorizedUser = {
    id: string;
    email: string;
    createdAt: Date;
};

export type DatabaseUser = {
    id: string;
    email: string;
    password_hash: string;
    created_at: Date;
};