UNPKG

193 BTypeScriptView Raw
1import { Runtype } from '../runtype';
2export interface BigInt extends Runtype<bigint> {
3 tag: 'bigint';
4}
5/**
6 * Validates that a value is a bigint.
7 */
8export declare const BigInt: BigInt;