dev: hello world

This commit is contained in:
vamsi 2022-11-19 19:51:26 +05:30
commit 6037fed3f4
145 changed files with 16848 additions and 0 deletions

18
types/users.d.ts vendored Normal file
View 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;
}