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