monorepo/visions/client/visions.ts

16 lines
265 B
TypeScript
Raw Normal View History

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