Files
zipline/src/lib/Data.ts
dicedtomatoreal 91c37007a9 the tokening
2020-10-04 21:50:25 -07:00

7 lines
123 B
TypeScript

export interface User {
username: string;
password?: string;
token?: string;
administrator: boolean;
_id?: any;
}