12 lines
479 B
JavaScript
12 lines
479 B
JavaScript
// src/enums/authentication-factor.ts
|
|
var AuthenticationFactor = /* @__PURE__ */ ((AuthenticationFactor2) => {
|
|
AuthenticationFactor2["Email"] = "email";
|
|
AuthenticationFactor2["Phone"] = "phone";
|
|
AuthenticationFactor2["Totp"] = "totp";
|
|
AuthenticationFactor2["Recoverycode"] = "recoverycode";
|
|
return AuthenticationFactor2;
|
|
})(AuthenticationFactor || {});
|
|
|
|
export { AuthenticationFactor };
|
|
//# sourceMappingURL=out.js.map
|
|
//# sourceMappingURL=authentication-factor.mjs.map
|