npm.io
2.4.10 • Published 2 weeks ago

@types/react-router-hash-link

Licence
MIT
Version
2.4.10
Deps
3
Size
5 kB
Vulns
0
Weekly
0
Stars
51.4K

Installation

npm install --save @types/react-router-hash-link

Summary

This package contains type definitions for react-router-hash-link (https://github.com/rafgraph/react-router-hash-link).

Details

Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react-router-hash-link.

index.d.ts

import * as React from "react";
import { LinkProps, NavLinkProps } from "react-router-dom";

export interface HashLinkProps extends LinkProps {
    elementId?: string | undefined;
    smooth?: boolean | undefined;
    scroll?: ((element: HTMLElement) => void) | undefined;
    timeout?: number | undefined;
}

export interface NavHashLinkProps extends NavLinkProps, Omit<HashLinkProps, "className" | "style"> {}

export const HashLink: React.ForwardRefExoticComponent<HashLinkProps & React.RefAttributes<HTMLAnchorElement>>;

export const NavHashLink: React.ForwardRefExoticComponent<NavHashLinkProps & React.RefAttributes<HTMLAnchorElement>>;

export function genericHashLink<P>(Component: React.FunctionComponent<P>): React.FunctionComponent<P>;

Additional Details

Credits

These definitions were written by Sam Baeck, and Eli Robinson.