Repository URL to install this package:
|
Version:
3.7.2 ▾
|
import { FocusEvent } from 'react';
import { IncrementerProps, DefaultIncrementerState } from './typings';
declare class IncrementerState implements DefaultIncrementerState {
count: number;
shouldIncrement: boolean;
shouldDecrement: boolean;
update(values: IncrementerProps): void;
incrementCount(props: IncrementerProps): void;
handleChange(props: IncrementerProps, event: Event): void;
handleBlur(props: IncrementerProps, event: FocusEvent<any>): void;
decrementCount(props: IncrementerProps): void;
}
export { IncrementerState };