UNPKG

@sontrx/typia

Version:

Superfast runtime validators with only one line

140 lines (137 loc) 2.61 kB
import * as functional from './functional.mjs'; export { functional }; import * as http from './http.mjs'; export { http }; import * as llm from './llm.mjs'; export { llm }; import * as json from './json.mjs'; export { json }; import * as misc from './misc.mjs'; export { misc }; import * as notations from './notations.mjs'; export { notations }; import * as protobuf from './protobuf.mjs'; export { protobuf }; import * as reflect from './reflect.mjs'; export { reflect }; import * as index from './tags/index.mjs'; export { index as tags }; export { ILlmApplicationOfValidate } from './schemas/llm/ILlmApplicationOfValidate.mjs'; export { ILlmFunctionOfValidate } from './schemas/llm/ILlmFunctionOfValidate.mjs'; export { TypeGuardError } from './TypeGuardError.mjs'; /** * @internal */ function assert() { halt("assert"); } /** * @internal */ function assertGuard() { halt("assertGuard"); } /** * @internal */ function is() { halt("is"); } /** * @internal */ function validate() { halt("validate"); } /** * @internal */ function assertEquals() { halt("assertEquals"); } /** * @internal */ function assertGuardEquals() { halt("assertGuardEquals"); } /** * @internal */ function equals() { halt("equals"); } /** * @internal */ function validateEquals() { halt("validateEquals"); } /** * @internal */ function random() { halt("random"); } /** * @internal */ function createAssert() { halt("createAssert"); } /** * @internal */ function createAssertGuard() { halt("createAssertGuard"); } /** * @internal */ function createIs() { halt("createIs"); } /** * @internal */ function createValidate() { halt("createValidate"); } /** * @internal */ function createAssertEquals() { halt("createAssertEquals"); } /** * @internal */ function createAssertGuardEquals() { halt("createAssertGuardEquals"); } /** * @internal */ function createEquals() { halt("createEquals"); } /** * @internal */ function createValidateEquals() { halt("createValidateEquals"); } /** * @internal */ function createRandom() { halt("createRandom"); } /** * @internal */ function halt(name) { throw new Error(`Error on typia.${name}(): no transform has been configured. Read and follow https://typia.io/docs/setup please.`); } export { assert, assertEquals, assertGuard, assertGuardEquals, createAssert, createAssertEquals, createAssertGuard, createAssertGuardEquals, createEquals, createIs, createRandom, createValidate, createValidateEquals, equals, is, random, validate, validateEquals }; //# sourceMappingURL=module.mjs.map