Nicolai Ort b9e573311c
All checks were successful
continuous-integration/drone Build is passing
new lib version [CI SKIP]
2021-01-08 19:56:49 +00:00

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;
};