import type { PasskeyCredential } from './PasskeyCredential'; /** * @type PasskeyUser: Represents a passkey user with their associated credentials * * @property id: Unique identifier for the passkey user * * @property userName: The username of the passkey user * - **Max Length:** 128 * * @property displayName: The display name of the passkey user * - **Max Length:** 256 * * @property userHandle: The user handle (WebAuthn user ID) * - **Max Length:** 128 * * @property slasUserId: The associated SLAS user ID * * @property credentials: Set of passkey credentials associated with this user * */ export type PasskeyUser = { id?: number; userName?: string; displayName?: string; userHandle?: string; slasUserId?: number; credentials?: Array; } & { [key: string]: any; };