@opra/common
Version:
Opra common package
9 lines (8 loc) • 377 B
TypeScript
import { type Validator } from 'valgen';
import { DECODER, ENCODER } from '../../constants.js';
import { NumberType } from './number.type.js';
export declare class IntegerType extends NumberType {
constructor(properties?: Partial<IntegerType>);
protected [DECODER](properties: Partial<this>): Validator;
protected [ENCODER](properties: Partial<this>): Validator;
}