Repository URL to install this package:
|
Version:
3.1.2 ▾
|
/**
* @todo use html5 `min` & `max`
*/
import * as React from 'react';
import { Value } from '../typings';
import { InputProps } from '../inputs/typings';
import { InputState } from '../inputs/InputState';
declare class IncrementerPlugin extends React.Component<InputProps> {
static isSatisfiedByProps(props: {
type: string;
}): boolean;
static defaultState: (inputState: InputState<import("../inputs/typings").AnyObj>) => {
validator: (value: Value) => boolean;
};
render(): JSX.Element;
}
export { IncrementerPlugin };
export default IncrementerPlugin;