io-ts-bigint
Version:
io-ts library for bigints
19 lines • 402 B
TypeScript
/**
* @since 0.0.1
*/
import * as t from 'io-ts';
/**
* @since 0.0.1
*/
export interface NegativeBigIntBrand {
readonly NegativeBigInt: unique symbol;
}
/**
* @since 0.0.1
*/
export declare const NegativeBigInt: t.BrandC<t.BigIntC, NegativeBigIntBrand>;
/**
* @since 0.0.1
*/
export declare type NegativeBigInt = t.TypeOf<typeof NegativeBigInt>;
//# sourceMappingURL=NegativeBigInt.d.ts.map