@vnmfify/core
Version:
```shell npm i @vnmfify/core -S ```
11 lines (10 loc) • 331 B
TypeScript
/// <reference types="react" />
import { SliderProps } from "./slider";
import SliderThumb from "./slider-thumb";
export type { SliderProps } from "./slider";
interface SliderInterface {
(props: SliderProps): JSX.Element;
Thumb: typeof SliderThumb;
}
declare const Slider: SliderInterface;
export default Slider;