mirror of
https://github.com/0rangebananaspy/authelia.git
synced 2024-09-14 22:47:21 +07:00
11 lines
223 B
TypeScript
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;
|
|
} |