Skip to main content
ContinueOptions
Example
export interface ContinueOptions extends CustomOptions {
  /**
   * The new nickname that the user wants to assign to their WebAuthn security key.
   * This value will be sent to the server for an update.
   * The server will validate this nickname (e.g., for length, allowed characters).
   * @type {string}
   * @example "Primary YubiKey"
   * @example "Home Office Key"
   */
  nickname: string;
}

Indexable

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

Properties

nickname
string
The new nickname for the WebAuthn security key. This is the value entered by the user in the input field. It must adhere to length and character constraints defined by the server.