16 lines
265 B
TypeScript
16 lines
265 B
TypeScript
|
/*
|
||
|
Generated by typeshare 1.13.0
|
||
|
*/
|
||
|
|
||
|
export type SessionId = string;
|
||
|
|
||
|
export interface AuthRequest {
|
||
|
username: string;
|
||
|
password: string;
|
||
|
}
|
||
|
|
||
|
export type AuthResponse =
|
||
|
| { type: "Success", content: SessionId }
|
||
|
| { type: "PasswordReset", content: SessionId };
|
||
|
|