6 lines
97 B
TypeScript
6 lines
97 B
TypeScript
|
|
||
|
export interface TOTPSecret {
|
||
|
base32: string;
|
||
|
ascii: string;
|
||
|
otpauth_url?: string;
|
||
|
}
|