File size: 164 Bytes
fa79853 |
1 2 3 4 5 6 7 8 9 |
import type { Timestamps } from './Timestamps';
export interface User extends Timestamps {
email: string;
hash: string;
token?: string;
authority?: 'admin';
}
|
fa79853 |
1 2 3 4 5 6 7 8 9 |
import type { Timestamps } from './Timestamps';
export interface User extends Timestamps {
email: string;
hash: string;
token?: string;
authority?: 'admin';
}
|