dev: hello world
This commit is contained in:
commit
6037fed3f4
145 changed files with 16848 additions and 0 deletions
18
types/users.d.ts
vendored
Normal file
18
types/users.d.ts
vendored
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
export interface IUser {
|
||||
id: readonly string;
|
||||
last_login: readonly Date;
|
||||
avatar: string;
|
||||
username: string;
|
||||
mobile_number: string;
|
||||
email: string;
|
||||
first_name: string;
|
||||
last_name: string;
|
||||
date_joined: readonly Date;
|
||||
created_at: readonly Date;
|
||||
updated_at: readonly Date;
|
||||
last_location: readonly string;
|
||||
created_location: readonly string;
|
||||
is_email_verified: boolean;
|
||||
token: string;
|
||||
[...rest: string]: any;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue