export interface PasskeyCreate { public_key: { user: { id: string; name: string; displayName: string; }; rp: { id: string; name: string; }; challenge: string; pubKeyCredParams: [ { type: string; alg: number; }, ]; authenticatorSelection: { residentKey: string; userVerification: string; authenticatorAttachment?: string; }; }; }
public_key: object
object
Was this page helpful?