Repository URL to install this package:
|
Version:
2.7.6 ▾
|
import { IncrementerProps, IncrementerStateType, InputChangeEvent, InputFocusEvent } from './typings';
export declare class IncrementerState implements IncrementerStateType {
count: number;
shouldIncrement: boolean;
shouldDecrement: boolean;
step: number;
maxValue: number;
minValue: number;
update(values: IncrementerProps): void;
incrementCount(): void;
decrementCount(): void;
handleChange(event: InputChangeEvent): void;
handleBlur(event: InputFocusEvent): void;
}