@vnmfify/core
Version:
```shell npm i @vnmfify/core -S ```
13 lines (12 loc) • 547 B
TypeScript
import { ITouchEvent } from "@vnxjs/components";
import * as React from "react";
import { ReactNode } from "react";
interface IndexListSidebarProps {
children?: ReactNode;
onClick?: (event: ITouchEvent) => void;
onTouchMove?: (event: ITouchEvent) => void;
onTouchCancel?: (event: ITouchEvent) => void;
onTouchEnd?: (event: ITouchEvent) => void;
}
declare const IndexListSidebar: React.ForwardRefExoticComponent<IndexListSidebarProps & React.RefAttributes<HTMLElement | undefined>>;
export default IndexListSidebar;