@mikezimm/fps-library-v2
Version:
Library of reusable typescript/javascript functions, interfaces and constants
18 lines • 509 B
TypeScript
/// <reference types="react" />
export interface IFPSSliderProps extends IFPSSliderValueProps, IFPSSliderBaseProps {
}
export interface IFPSSliderValueProps {
min: number;
max: number;
step: number;
initial: number;
values?: string[] | number[];
}
export interface IFPSSliderBaseProps {
onChange: (value: number) => void;
htmlFor?: string;
label?: string;
style?: React.CSSProperties;
className?: string;
}
//# sourceMappingURL=IFPSSliderProps.d.ts.map