8 lines
156 B
TypeScript
8 lines
156 B
TypeScript
|
import { SecondFactorMethod } from "./Methods";
|
||
|
|
||
|
export interface UserInfo {
|
||
|
method: SecondFactorMethod;
|
||
|
has_u2f: boolean;
|
||
|
has_totp: boolean;
|
||
|
}
|