7ee812bbb3
Jenkins Production Deployment
Endpoints are separated into distinct packages and interfaces are extracted into files Co-authored-by: Patrick Müller <patrick@mueller-patrick.tech> Reviewed-on: #12 Co-authored-by: Patrick Müller <patrick@plutodev.de> Co-committed-by: Patrick Müller <patrick@plutodev.de>
13 lines
253 B
TypeScript
13 lines
253 B
TypeScript
/**
|
|
* Used in the getUserData method as return value
|
|
*/
|
|
export interface UserData {
|
|
username: string;
|
|
email: string;
|
|
firstName: string;
|
|
lastName: string;
|
|
lastLogin: string;
|
|
emailIsVerified: string;
|
|
isPremiumUser: string;
|
|
}
|