blob: 1742fb7865156ae315100d430f03dc4dfcf4d77b [file] [log] [blame]
export interface IAuthRequest {
username: string;
password: string;
}
export interface IAuthResponse {
xossessionid: string;
xoscsrftoken: string;
user: string;
}