UNPKG

bknd

Version:

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

7 lines (6 loc) 371 B
import { type ClassNameValue } from "tailwind-merge"; export declare function cn(...inputs: ClassNameValue[]): string; /** * Dynamically import a module from a URL in the browser in a way compatible with all react frameworks (nextjs doesn't support dynamic imports) */ export declare function importDynamicBrowserModule<T = any>(name: string, url: string): Promise<T>;