UNPKG

@renderlesskit/react

Version:

Collection of headless components/hooks that are accessible, composable, customizable from low level to build your own UI & Design System powered by Reakit

8 lines (7 loc) 213 B
export interface RangeValueBase<T> { /** The smallest value allowed. */ minValue?: T; /** The largest value allowed. */ maxValue?: T; } export declare type Booleanish = boolean | "true" | "false";