@micro-router
    Preparing search index...

    Type Alias LinkBaseProps<P>

    LinkBaseProps: PropsWithChildren<
        { ref?: RefObject<HTMLAnchorElement>; to: P } & Pick<
            AnchorHTMLAttributes<unknown>,
            "className" | "tabIndex",
        > & AriaAttributes & {
            [key: `data-${string}`]: string | number | boolean | undefined;
        },
    >

    Type Parameters

    • P extends Path | string