bullet-chart-react
Version:
17 lines (16 loc) • 362 B
TypeScript
interface useThrottleStateTypes {
state: any;
options: {
wait: number;
};
}
declare function useThrottleState(props: useThrottleStateTypes): any;
declare namespace useThrottleState {
var defaultProps: {
state: null;
options: {
wait: number;
};
};
}
export default useThrottleState;