@simplewebauthn/types
Deprecation notice
It is no longer necessary to install this package if you are running v13+ of either @simplewebauthn/browser or @simplewebauthn/server. The types that were maintained in this package will be exported directly from those packages going forward. The last published version of @simplewebauthn/types remains available on NPM and JSR but will no longer be updated going forward.
Before:
import type { WebAuthnCredential } from '@simplewebauthn/types';
After:
import { ..., type WebAuthnCredential } from '@simplewebauthn/server';
import { ..., type WebAuthnCredential } from '@simplewebauthn/browser';