clvm
Version:
Javascript implementation of chia lisp
23 lines (22 loc) • 577 B
JavaScript
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.None = void 0;
/*
export type int = number;
export type int8 = number;
export type uint8 = number;
export type int16 = number;
export type uint16 = number;
export type int32 = number;
export type uint32 = number;
export type int64 = BigInt;
export type uint64 = BigInt;
export type uint128 = BigInt;
export type int512 = BigInt;
export type float = number;
export type str = string;
export type bool = boolean;
export type True = true;
export type False = false;
*/
exports.None = undefined;