Initial commit for the js version
This commit is contained in:
17
dist/models/User.d.ts
vendored
Normal file
17
dist/models/User.d.ts
vendored
Normal file
@@ -0,0 +1,17 @@
|
||||
export declare type User = {
|
||||
id: number;
|
||||
uuid: string;
|
||||
email: string;
|
||||
phone?: string;
|
||||
username: string;
|
||||
firstname: string;
|
||||
middlename?: string;
|
||||
lastname: string;
|
||||
password: string;
|
||||
permissions?: any;
|
||||
groups?: any;
|
||||
enabled: boolean;
|
||||
refreshTokenCount: number;
|
||||
profilePic?: string;
|
||||
actions?: any;
|
||||
};
|
||||
Reference in New Issue
Block a user