UNPKG

@vnmfify/core

Version:

```shell npm i @vnmfify/core -S ```

10 lines (9 loc) 321 B
/// <reference types="react" /> import { IndexListProps } from "./index-list"; import IndexListAnchor from "./index-list-anchor"; interface IndexListInterface { (props: IndexListProps): JSX.Element; Anchor: typeof IndexListAnchor; } declare const IndexList: IndexListInterface; export default IndexList;