bknd
Version:
Lightweight Firebase/Supabase alternative built to run anywhere — incl. Next.js, React Router, Astro, Cloudflare, Bun, Node, AWS Lambda & more.
8 lines (7 loc) • 315 B
TypeScript
import type { DropdownProps } from "../../ui/components/overlay/Dropdown";
export type BkndAdminAppShellOptions = {
userMenu?: DropdownProps["items"];
};
export declare function useAppShellAdminOptions(): {
userMenu: (boolean | import("../../ui/components/overlay/Dropdown").DropdownItem | undefined)[];
};