bknd
Version:
Lightweight Firebase/Supabase alternative built to run anywhere — incl. Next.js, React Router, Astro, Cloudflare, Bun, Node, AWS Lambda & more.
12 lines (11 loc) • 367 B
TypeScript
import { useDisclosure } from "@mantine/hooks";
export type AppShellContextType = {
sidebar: {
open: boolean;
handler: ReturnType<typeof useDisclosure>[1];
};
};
export declare function AppShellProvider({ children }: {
children: any;
}): import("react/jsx-runtime").JSX.Element;
export declare function useAppShell(): AppShellContextType;