bknd
Version:
Lightweight Firebase/Supabase alternative built to run anywhere — incl. Next.js, React Router, Astro, Cloudflare, Bun, Node, AWS Lambda & more.
10 lines (9 loc) • 485 B
TypeScript
import { type EmptyProps } from "./Empty";
export declare const Message: {
NotFound: (props: Partial<EmptyProps>) => import("react/jsx-runtime").JSX.Element;
NotAllowed: (props: Partial<EmptyProps>) => import("react/jsx-runtime").JSX.Element;
NotEnabled: (props: Partial<EmptyProps>) => import("react/jsx-runtime").JSX.Element;
MissingPermission: ({ what, ...props }: Partial<EmptyProps> & {
what?: string;
}) => import("react/jsx-runtime").JSX.Element;
};