lets-mfa
Version:
Free, secure, and quick way to add MFA to your existing app. No user migrations or re-architecture needed!
10 lines • 352 B
TypeScript
import * as jose from "jose";
/** This object represents the encrypted copy of the account vault
* from LetsMFA. This object must be stored by the Service Provider
* associated with the user account. */
export interface AccountVault {
sub: string;
domain: string;
account: jose.FlattenedJWE;
}
//# sourceMappingURL=account-vault.d.ts.map