UNPKG

@passwordless-id/webauthn

Version:

A small wrapper around the webauthn protocol to make one's life easier.

16 lines (15 loc) 536 B
import * as client from './client.js'; import * as server from './server.js'; import * as parsers from './parsers.js'; import * as utils from './utils.js'; import { authenticatorMetadata } from './authenticatorMetadata.js'; export { client, server, parsers, utils, authenticatorMetadata }; export type * from './types.js'; declare const webauthn: { client: typeof client; server: typeof server; parsers: typeof parsers; utils: typeof utils; authenticatorMetadata: Record<string, string>; }; export default webauthn;