summary refs log tree commit diff
path: root/src/util/schemas/TotpSchema.ts
blob: 941a92ec3e383197a24c2092d0076659757fd55a (plain) (blame)
1
2
3
4
5
6
export interface TotpSchema {
	code: string;
	ticket: string;
	gift_code_sku_id?: string | null;
	login_source?: string | null;
}