@vnmfify/core
Version:
```shell npm i @vnmfify/core -S ```
10 lines (9 loc) • 333 B
TypeScript
import { ViewProps } from "@vnxjs/components/types/View";
import { ReactNode } from "react";
export interface IndexListProps extends ViewProps {
sticky?: boolean;
stickyOffsetTop?: number | string;
children?: ReactNode;
}
declare function IndexList(props: IndexListProps): JSX.Element;
export default IndexList;