mirror of
https://github.com/diced/zipline.git
synced 2025-12-31 07:01:24 -08:00
7 lines
123 B
TypeScript
7 lines
123 B
TypeScript
export interface User {
|
|
username: string;
|
|
password?: string;
|
|
token?: string;
|
|
administrator: boolean;
|
|
_id?: any;
|
|
} |