@clerk/shared
Version:
Internal package utils used by the Clerk SDKs
15 lines • 370 B
text/typescript
//#region src/webauthn.d.ts
/**
*
*/
declare function isWebAuthnSupported(): boolean;
/**
*
*/
declare function isWebAuthnAutofillSupported(): Promise<boolean>;
/**
*
*/
declare function isWebAuthnPlatformAuthenticatorSupported(): Promise<boolean>;
//#endregion
export { isWebAuthnAutofillSupported, isWebAuthnPlatformAuthenticatorSupported, isWebAuthnSupported };