UNPKG

fluxel

Version:

An ultra-lightweight, high-performance library for efficient DOM building and dynamic web UIs

7 lines (6 loc) 291 B
import type { FluxelComponent, FluxelInternalOptionsFromNode } from "../type.js"; export type LinkProps = Omit<FluxelInternalOptionsFromNode<HTMLAnchorElement>, "href"> & { href: string; replace?: boolean; }; export declare const Link: FluxelComponent<LinkProps, HTMLAnchorElement>;