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