UNPKG

bknd

Version:

Lightweight Firebase/Supabase alternative built to run anywhere — incl. Next.js, React Router, Astro, Cloudflare, Bun, Node, AWS Lambda & more.

9 lines (8 loc) 283 B
import type { AppAuthSchema } from "../../../auth/auth-schema"; type AuthStrategyData = Pick<AppAuthSchema, "strategies" | "basepath">; export declare const useAuthStrategies: (options?: { baseUrl?: string; }) => Partial<AuthStrategyData> & { loading: boolean; }; export {};