bknd
Version:
Lightweight Firebase/Supabase alternative built to run anywhere — incl. Next.js, React Router, Astro, Cloudflare, Bun, Node, AWS Lambda & more.
11 lines (10 loc) • 335 B
TypeScript
import { useAuthStrategies } from "../hooks/use-auth";
import { AuthForm } from "./AuthForm";
import { AuthScreen } from "./AuthScreen";
import { SocialLink } from "./SocialLink";
export declare const Auth: {
Screen: typeof AuthScreen;
Form: typeof AuthForm;
SocialLink: typeof SocialLink;
};
export { useAuthStrategies };