UNPKG

@opra/common

Version:
9 lines (8 loc) 377 B
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; }