Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

PublicKeyCredentialUserEntity

Represents user account information for WebAuthn registration with binary data. Contains identifiers and display information for the user being registered.

interface PublicKeyCredentialUserEntity {
displayName: string;
id: BufferSource;
name: string;
}

§Properties

§
displayName: string
[src]

A human-friendly display name for the user. Example: "John Doe"

§
id: BufferSource
[src]

A unique identifier for the user account. Maximum 64 bytes. Should not contain PII.

§
name: string
[src]

A human-readable identifier for the account. Typically an email, username, or phone number.