Skip to main content
VerifyPlatformAuthenticatorOptions
Example
export interface VerifyPlatformAuthenticatorOptions extends CustomOptions {
  /**
   * Optional. If true and `screen.showRememberDevice` is true, this indicates the user
   * has chosen to remember this device, typically for 30 days, to bypass MFA on subsequent logins.
   * @type {boolean}
   */
  rememberDevice?: boolean;
}

Indexable

[key: string]: string | number | boolean | undefined

Properties

rememberDevice?
boolean
Optional. If true, attempts to remember the browser for future MFA challenges. Corresponds to the rememberBrowser form field. This is only applicable if screen.showRememberDevice is true.