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