veffect
Version:
powerful TypeScript validation library built on the robust foundation of Effect combining exceptional type safety, high performance, and developer experience. Taking inspiration from Effect's functional principles, VEffect delivers a balanced approach tha
54 lines (53 loc) • 2.46 kB
JavaScript
;
/**
* VEffect Validation Library
*
* A TypeScript validation library built on top of Effect.
*/
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
if (k2 === undefined) k2 = k;
var desc = Object.getOwnPropertyDescriptor(m, k);
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
desc = { enumerable: true, get: function() { return m[k]; } };
}
Object.defineProperty(o, k2, desc);
}) : (function(o, m, k, k2) {
if (k2 === undefined) k2 = k;
o[k2] = m[k];
}));
var __exportStar = (this && this.__exportStar) || function(m, exports) {
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
};
Object.defineProperty(exports, "__esModule", { value: true });
__exportStar(require("./schema"), exports);
__exportStar(require("./validator"), exports);
__exportStar(require("./errors"), exports);
__exportStar(require("./types"), exports);
__exportStar(require("./infer"), exports);
__exportStar(require("./registry"), exports);
__exportStar(require("./schema/string"), exports);
__exportStar(require("./schema/number"), exports);
__exportStar(require("./schema/boolean"), exports);
__exportStar(require("./schema/array"), exports);
__exportStar(require("./schema/tuple"), exports);
__exportStar(require("./schema/record"), exports);
__exportStar(require("./schema/union"), exports);
__exportStar(require("./schema/date"), exports);
__exportStar(require("./schema/literal"), exports);
__exportStar(require("./schema/optional"), exports);
__exportStar(require("./schema/custom"), exports);
__exportStar(require("./schema/object"), exports);
__exportStar(require("./schema/interface"), exports);
__exportStar(require("./schema/discriminatedUnion"), exports);
__exportStar(require("./schema/pattern"), exports);
__exportStar(require("./schema/any"), exports);
__exportStar(require("./schema/set"), exports);
__exportStar(require("./schema/map"), exports);
__exportStar(require("./schema/bigint"), exports);
__exportStar(require("./schema/intersection"), exports);
__exportStar(require("./schema/symbol"), exports);
__exportStar(require("./schema/null"), exports);
__exportStar(require("./schema/undefined"), exports);
__exportStar(require("./schema/void"), exports);
__exportStar(require("./schema/unknown"), exports);
__exportStar(require("./schema/never"), exports);