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