UNPKG

synapse-react-client

Version:

[![npm version](https://badge.fury.io/js/synapse-react-client.svg)](https://badge.fury.io/js/synapse-react-client) [![code style: prettier](https://img.shields.io/badge/code_style-prettier-ff69b4.svg?style=flat-square)](https://github.com/prettier/prettie

16 lines 444 B
import React from 'react'; type ControlType = 'number' | 'date'; export type RangeValues<T = string | number> = { min?: T; max?: T; }; export type RangeProps = { type: ControlType; initialValues?: RangeValues; className?: string; errorText?: string; onApplyClicked: (newValues: RangeValues) => void; }; export declare function Range(props: RangeProps): React.ReactNode; export {}; //# sourceMappingURL=Range.d.ts.map