summary refs log tree commit diff
path: root/src/util/schemas/LoginSchema.ts
blob: 358019a8ca9e391f480cf0d677786f210e7b6c04 (plain) (blame)
1
2
3
4
5
6
7
8
9
export interface LoginSchema {
	login: string;
	password: string;
	undelete?: boolean;
	captcha_key?: string;
	login_source?: string;
	gift_code_sku_id?: string;
}