coyotte508's picture
coyotte508 HF staff
✨ Load pictures
fa79853
raw
history blame
No virus
164 Bytes
import type { Timestamps } from './Timestamps';
export interface User extends Timestamps {
email: string;
hash: string;
token?: string;
authority?: 'admin';
}