UNPKG

expo-passkey

Version:

Passkey authentication for Expo apps with Better Auth integration

17 lines 648 B
/** * @file Server core implementation * @description Core implementation of the Expo Passkey server plugin with WebAuthn support */ import type { BetterAuthPlugin } from "better-auth/types"; import type { ExpoPasskeyOptions } from "../types/server"; /** * Clears all cleanup intervals */ export declare function clearCleanupIntervals(): void; /** * Creates an instance of the Expo Passkey server plugin with WebAuthn support * @param options Configuration options for the plugin * @returns BetterAuthPlugin instance */ export declare const expoPasskey: (options: ExpoPasskeyOptions) => BetterAuthPlugin; //# sourceMappingURL=core.d.ts.map