summary refs log tree commit diff
path: root/src/util/schemas/LoginSchema.ts
blob: 543d236c2dddea2bc492a165dcd8638f54ff08fe (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;
}