1
0
mirror of https://github.com/0rangebananaspy/authelia.git synced 2024-09-14 22:47:21 +07:00
authelia/server/types/TOTPSecret.ts
2018-12-18 16:34:56 +01:00

11 lines
223 B
TypeScript

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;
}