authelia/server/types/TOTPSecret.ts

11 lines
223 B
TypeScript
Raw Normal View History

2017-05-16 21:17:46 +00:00
export interface TOTPSecret {
ascii: string;
hex: string;
base32: string;
qr_code_ascii: string;
qr_code_hex: string;
qr_code_base32: string;
google_auth_qr: string;
otpauth_url: string;
}