runtypes
Version:
Runtime validation for static types
12 lines (11 loc) • 390 B
JavaScript
;
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
const Literal_js_1 = __importDefault(require("./Literal.js"));
/**
* An alias for `Literal(null)`.
*/
const Null = (0, Literal_js_1.default)(null);
exports.default = Null;