12 lines
292 B
TypeScript
12 lines
292 B
TypeScript
/**
|
|
* Response returned by the authentication endpoints (login / register).
|
|
*/
|
|
export interface LoginResponse {
|
|
/** Unique user identifier assigned by the server. */
|
|
id: string;
|
|
/** Login username. */
|
|
username: string;
|
|
/** Human-readable display name. */
|
|
displayName: string;
|
|
}
|