UNPKG

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) 569 B
import { type LinkProps } from "wouter"; export declare const relativePath: (base?: string, path?: string) => string; export declare const absolutePath: (to: any, base?: string) => any; export declare const stripQm: (str: any) => any; export declare const unescape: (str: any) => any; export declare function isLinkActive(href: string, strictness?: number): boolean; export declare function Link({ className, native, onClick, ...props }: { className?: string; native?: boolean; transition?: boolean; } & LinkProps): import("react/jsx-runtime").JSX.Element;