18 lines
371 B
TypeScript
18 lines
371 B
TypeScript
export declare type User = {
|
|
uuid: string;
|
|
email: string;
|
|
phone?: string;
|
|
username: string;
|
|
firstname: string;
|
|
middlename?: string;
|
|
lastname: string;
|
|
password: string;
|
|
groups?: any;
|
|
enabled: boolean;
|
|
refreshTokenCount: number;
|
|
profilePic: string;
|
|
resetRequestedTimestamp?: string;
|
|
actions?: any;
|
|
id: number;
|
|
};
|