@passwordless-id/webauthn
Version:
A small wrapper around the webauthn protocol to make one's life easier.
15 lines (14 loc) • 503 B
TypeScript
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 };
declare const webauthn: {
client: typeof client;
server: typeof server;
parsers: typeof parsers;
utils: typeof utils;
authenticatorMetadata: Record<string, string>;
};
export default webauthn;