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