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 PositiveBigIntBrand {
readonly PositiveBigInt: unique symbol;
}
/**
* @since 0.0.1
*/
export declare const PositiveBigInt: t.BrandC<t.BigIntC, PositiveBigIntBrand>;
/**
* @since 0.0.1
*/
export declare type PositiveBigInt = t.TypeOf<typeof PositiveBigInt>;
//# sourceMappingURL=PositiveBigInt.d.ts.map