@react-input-validator/rules
Version:
The validation rule objects used by the packages: `@react-input-validator/core`, `@react-input-validator/native` and `@react-input-validator/web`
12 lines • 355 B
TypeScript
/**
* https://github.com/atmulyana/react-input-validator
*/
import type { IRule } from './Rule';
import ValidationRule from './ValidationRule';
export declare class Integer extends ValidationRule<any> {
constructor();
get errorMessage(): string;
validate(): IRule;
}
export declare const integer: IRule;
//# sourceMappingURL=integer.d.ts.map