UNPKG

0x1

Version:

0x1: Lightning-fast web framework for JavaScript/TypeScript with zero overhead and maximum performance, powered by Bun

17 lines (15 loc) 309 B
/** * 0x1 Link Component Type Definitions */ export interface LinkProps { href: string; className?: string; children?: any; target?: string; rel?: string; prefetch?: boolean; replace?: boolean; scroll?: boolean; [key: string]: any; } export default function Link(props: LinkProps): any;