typebox 1.0.31 → 1.0.33
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/cjs/compile/code.d.ts +12 -0
- package/build/cjs/compile/code.js +68 -0
- package/build/cjs/compile/compile.d.ts +6 -0
- package/build/cjs/compile/compile.js +14 -0
- package/build/cjs/compile/index.d.ts +12 -0
- package/build/cjs/compile/index.js +29 -0
- package/build/cjs/compile/validator.d.ts +37 -0
- package/build/cjs/compile/validator.js +96 -0
- package/build/cjs/error/errors.js +21 -0
- package/build/cjs/error/index.d.ts +1 -0
- package/build/cjs/error/index.js +17 -0
- package/build/cjs/format/_registry.js +105 -0
- package/build/cjs/format/date-time.js +14 -0
- package/build/cjs/format/date.js +22 -0
- package/build/cjs/format/duration.js +11 -0
- package/build/cjs/format/email.js +8 -0
- package/build/cjs/format/format.d.ts +22 -0
- package/build/cjs/format/format.js +38 -0
- package/build/cjs/format/hostname.js +8 -0
- package/build/cjs/format/idn-email.js +8 -0
- package/build/cjs/format/idn-hostname.js +131 -0
- package/build/cjs/format/index.d.ts +4 -0
- package/build/cjs/format/index.js +21 -0
- package/build/cjs/format/ipv4.js +12 -0
- package/build/cjs/format/ipv6.js +12 -0
- package/build/cjs/format/iri-reference.js +62 -0
- package/build/cjs/format/iri.js +16 -0
- package/build/cjs/format/json-pointer-uri-fragment.js +12 -0
- package/build/cjs/format/json-pointer.js +12 -0
- package/build/cjs/format/regex.js +20 -0
- package/build/cjs/format/relative-json-pointer.js +12 -0
- package/build/cjs/format/time.js +30 -0
- package/build/cjs/format/uri-reference.js +12 -0
- package/build/cjs/format/uri-template.js +13 -0
- package/build/cjs/format/uri.js +12 -0
- package/build/cjs/format/url.js +12 -0
- package/build/cjs/format/uuid.js +12 -0
- package/build/cjs/guard/emit.js +237 -0
- package/build/cjs/guard/globals.js +111 -0
- package/build/cjs/guard/guard.js +233 -0
- package/build/cjs/guard/index.d.ts +6 -0
- package/build/cjs/guard/index.js +9 -0
- package/build/cjs/guard/native.js +72 -0
- package/build/cjs/index.d.ts +8 -0
- package/build/cjs/index.js +31 -0
- package/build/cjs/schema/build.d.ts +35 -0
- package/build/cjs/schema/build.js +102 -0
- package/build/cjs/schema/check.d.ts +5 -0
- package/build/cjs/schema/check.js +15 -0
- package/build/cjs/schema/deref/deref.d.ts +4 -0
- package/build/cjs/schema/deref/deref.js +81 -0
- package/build/cjs/schema/deref/index.d.ts +1 -0
- package/build/cjs/schema/deref/index.js +5 -0
- package/build/cjs/schema/engine/_context.d.ts +42 -0
- package/build/cjs/schema/engine/_context.js +130 -0
- package/build/cjs/schema/engine/_exact_optional.js +25 -0
- package/build/cjs/schema/engine/_externals.js +39 -0
- package/build/cjs/schema/engine/_functions.d.ts +5 -0
- package/build/cjs/schema/engine/_functions.js +51 -0
- package/build/cjs/schema/engine/_guard.d.ts +5 -0
- package/build/cjs/schema/engine/_guard.js +31 -0
- package/build/cjs/schema/engine/_reducer.d.ts +3 -0
- package/build/cjs/schema/engine/_reducer.js +48 -0
- package/build/cjs/schema/engine/_refine.d.ts +5 -0
- package/build/cjs/schema/engine/_refine.js +34 -0
- package/build/cjs/schema/engine/additionalItems.d.ts +5 -0
- package/build/cjs/schema/engine/additionalItems.js +53 -0
- package/build/cjs/schema/engine/additionalProperties.d.ts +8 -0
- package/build/cjs/schema/engine/additionalProperties.js +111 -0
- package/build/cjs/schema/engine/allOf.d.ts +5 -0
- package/build/cjs/schema/engine/allOf.js +52 -0
- package/build/cjs/schema/engine/anyOf.d.ts +5 -0
- package/build/cjs/schema/engine/anyOf.js +57 -0
- package/build/cjs/schema/engine/boolean.d.ts +4 -0
- package/build/cjs/schema/engine/boolean.js +30 -0
- package/build/cjs/schema/engine/const.d.ts +5 -0
- package/build/cjs/schema/engine/const.js +35 -0
- package/build/cjs/schema/engine/contains.d.ts +5 -0
- package/build/cjs/schema/engine/contains.js +45 -0
- package/build/cjs/schema/engine/dependencies.d.ts +5 -0
- package/build/cjs/schema/engine/dependencies.js +50 -0
- package/build/cjs/schema/engine/dependentRequired.d.ts +5 -0
- package/build/cjs/schema/engine/dependentRequired.js +45 -0
- package/build/cjs/schema/engine/dependentSchemas.d.ts +5 -0
- package/build/cjs/schema/engine/dependentSchemas.js +43 -0
- package/build/cjs/schema/engine/enum.d.ts +5 -0
- package/build/cjs/schema/engine/enum.js +38 -0
- package/build/cjs/schema/engine/exclusiveMaximum.d.ts +5 -0
- package/build/cjs/schema/engine/exclusiveMaximum.js +30 -0
- package/build/cjs/schema/engine/exclusiveMinimum.d.ts +5 -0
- package/build/cjs/schema/engine/exclusiveMinimum.js +30 -0
- package/build/cjs/schema/engine/format.d.ts +5 -0
- package/build/cjs/schema/engine/format.js +31 -0
- package/build/cjs/schema/engine/if.d.ts +5 -0
- package/build/cjs/schema/engine/if.js +52 -0
- package/build/cjs/schema/engine/index.d.ts +47 -0
- package/build/cjs/schema/engine/index.js +69 -0
- package/build/cjs/schema/engine/items.d.ts +5 -0
- package/build/cjs/schema/engine/items.js +73 -0
- package/build/cjs/schema/engine/maxContains.d.ts +5 -0
- package/build/cjs/schema/engine/maxContains.js +45 -0
- package/build/cjs/schema/engine/maxItems.d.ts +5 -0
- package/build/cjs/schema/engine/maxItems.js +30 -0
- package/build/cjs/schema/engine/maxLength.d.ts +5 -0
- package/build/cjs/schema/engine/maxLength.js +30 -0
- package/build/cjs/schema/engine/maxProperties.d.ts +5 -0
- package/build/cjs/schema/engine/maxProperties.js +30 -0
- package/build/cjs/schema/engine/maximum.d.ts +5 -0
- package/build/cjs/schema/engine/maximum.js +30 -0
- package/build/cjs/schema/engine/minContains.d.ts +5 -0
- package/build/cjs/schema/engine/minContains.js +44 -0
- package/build/cjs/schema/engine/minItems.d.ts +5 -0
- package/build/cjs/schema/engine/minItems.js +30 -0
- package/build/cjs/schema/engine/minLength.d.ts +5 -0
- package/build/cjs/schema/engine/minLength.js +30 -0
- package/build/cjs/schema/engine/minProperties.d.ts +5 -0
- package/build/cjs/schema/engine/minProperties.js +30 -0
- package/build/cjs/schema/engine/minimum.d.ts +5 -0
- package/build/cjs/schema/engine/minimum.js +30 -0
- package/build/cjs/schema/engine/multipleOf.d.ts +5 -0
- package/build/cjs/schema/engine/multipleOf.js +30 -0
- package/build/cjs/schema/engine/not.d.ts +5 -0
- package/build/cjs/schema/engine/not.js +41 -0
- package/build/cjs/schema/engine/oneOf.d.ts +5 -0
- package/build/cjs/schema/engine/oneOf.js +63 -0
- package/build/cjs/schema/engine/pattern.d.ts +5 -0
- package/build/cjs/schema/engine/pattern.js +33 -0
- package/build/cjs/schema/engine/patternProperties.d.ts +5 -0
- package/build/cjs/schema/engine/patternProperties.js +47 -0
- package/build/cjs/schema/engine/prefixItems.d.ts +5 -0
- package/build/cjs/schema/engine/prefixItems.js +40 -0
- package/build/cjs/schema/engine/properties.d.ts +5 -0
- package/build/cjs/schema/engine/properties.js +80 -0
- package/build/cjs/schema/engine/propertyNames.d.ts +5 -0
- package/build/cjs/schema/engine/propertyNames.js +42 -0
- package/build/cjs/schema/engine/ref.d.ts +5 -0
- package/build/cjs/schema/engine/ref.js +48 -0
- package/build/cjs/schema/engine/required.d.ts +5 -0
- package/build/cjs/schema/engine/required.js +37 -0
- package/build/cjs/schema/engine/schema.d.ts +5 -0
- package/build/cjs/schema/engine/schema.js +327 -0
- package/build/cjs/schema/engine/type.d.ts +5 -0
- package/build/cjs/schema/engine/type.js +79 -0
- package/build/cjs/schema/engine/unevaluatedItems.d.ts +5 -0
- package/build/cjs/schema/engine/unevaluatedItems.js +54 -0
- package/build/cjs/schema/engine/unevaluatedProperties.d.ts +5 -0
- package/build/cjs/schema/engine/unevaluatedProperties.js +54 -0
- package/build/cjs/schema/engine/uniqueItems.d.ts +5 -0
- package/build/cjs/schema/engine/uniqueItems.js +56 -0
- package/build/cjs/schema/errors.d.ts +6 -0
- package/build/cjs/schema/errors.js +27 -0
- package/build/cjs/schema/index.d.ts +3 -0
- package/build/cjs/schema/index.js +25 -0
- package/build/cjs/schema/schema.d.ts +5 -0
- package/build/cjs/schema/schema.js +21 -0
- package/build/cjs/schema/types/_guard.d.ts +10 -0
- package/build/cjs/schema/types/_guard.js +20 -0
- package/build/cjs/schema/types/_refine.d.ts +13 -0
- package/build/cjs/schema/types/_refine.js +21 -0
- package/build/cjs/schema/types/additionalItems.d.ts +9 -0
- package/build/cjs/schema/types/additionalItems.js +17 -0
- package/build/cjs/schema/types/additionalProperties.d.ts +9 -0
- package/build/cjs/schema/types/additionalProperties.js +17 -0
- package/build/cjs/schema/types/allOf.d.ts +9 -0
- package/build/cjs/schema/types/allOf.js +18 -0
- package/build/cjs/schema/types/anyOf.d.ts +9 -0
- package/build/cjs/schema/types/anyOf.js +18 -0
- package/build/cjs/schema/types/const.d.ts +9 -0
- package/build/cjs/schema/types/const.js +15 -0
- package/build/cjs/schema/types/contains.d.ts +9 -0
- package/build/cjs/schema/types/contains.js +17 -0
- package/build/cjs/schema/types/contentEncoding.d.ts +9 -0
- package/build/cjs/schema/types/contentEncoding.js +16 -0
- package/build/cjs/schema/types/contentMediaType.d.ts +9 -0
- package/build/cjs/schema/types/contentMediaType.js +16 -0
- package/build/cjs/schema/types/default.d.ts +9 -0
- package/build/cjs/schema/types/default.js +15 -0
- package/build/cjs/schema/types/defs.d.ts +6 -0
- package/build/cjs/schema/types/defs.js +15 -0
- package/build/cjs/schema/types/dependencies.d.ts +11 -0
- package/build/cjs/schema/types/dependencies.js +19 -0
- package/build/cjs/schema/types/dependentRequired.d.ts +9 -0
- package/build/cjs/schema/types/dependentRequired.js +18 -0
- package/build/cjs/schema/types/dependentSchemas.d.ts +9 -0
- package/build/cjs/schema/types/dependentSchemas.js +18 -0
- package/build/cjs/schema/types/else.d.ts +9 -0
- package/build/cjs/schema/types/else.js +17 -0
- package/build/cjs/schema/types/enum.d.ts +9 -0
- package/build/cjs/schema/types/enum.js +16 -0
- package/build/cjs/schema/types/exclusiveMaximum.d.ts +9 -0
- package/build/cjs/schema/types/exclusiveMaximum.js +16 -0
- package/build/cjs/schema/types/exclusiveMinimum.d.ts +9 -0
- package/build/cjs/schema/types/exclusiveMinimum.js +16 -0
- package/build/cjs/schema/types/format.d.ts +9 -0
- package/build/cjs/schema/types/format.js +16 -0
- package/build/cjs/schema/types/id.d.ts +9 -0
- package/build/cjs/schema/types/id.js +16 -0
- package/build/cjs/schema/types/if.d.ts +9 -0
- package/build/cjs/schema/types/if.js +17 -0
- package/build/cjs/schema/types/index.d.ts +51 -0
- package/build/cjs/schema/types/index.js +73 -0
- package/build/cjs/schema/types/items.d.ts +19 -0
- package/build/cjs/schema/types/items.js +31 -0
- package/build/cjs/schema/types/maxContains.d.ts +9 -0
- package/build/cjs/schema/types/maxContains.js +16 -0
- package/build/cjs/schema/types/maxItems.d.ts +9 -0
- package/build/cjs/schema/types/maxItems.js +16 -0
- package/build/cjs/schema/types/maxLength.d.ts +9 -0
- package/build/cjs/schema/types/maxLength.js +16 -0
- package/build/cjs/schema/types/maxProperties.d.ts +9 -0
- package/build/cjs/schema/types/maxProperties.js +16 -0
- package/build/cjs/schema/types/maximum.d.ts +9 -0
- package/build/cjs/schema/types/maximum.js +16 -0
- package/build/cjs/schema/types/minContains.d.ts +9 -0
- package/build/cjs/schema/types/minContains.js +16 -0
- package/build/cjs/schema/types/minItems.d.ts +9 -0
- package/build/cjs/schema/types/minItems.js +16 -0
- package/build/cjs/schema/types/minLength.d.ts +9 -0
- package/build/cjs/schema/types/minLength.js +16 -0
- package/build/cjs/schema/types/minProperties.d.ts +9 -0
- package/build/cjs/schema/types/minProperties.js +16 -0
- package/build/cjs/schema/types/minimum.d.ts +9 -0
- package/build/cjs/schema/types/minimum.js +16 -0
- package/build/cjs/schema/types/multipleOf.d.ts +9 -0
- package/build/cjs/schema/types/multipleOf.js +16 -0
- package/build/cjs/schema/types/not.d.ts +9 -0
- package/build/cjs/schema/types/not.js +17 -0
- package/build/cjs/schema/types/oneOf.d.ts +9 -0
- package/build/cjs/schema/types/oneOf.js +18 -0
- package/build/cjs/schema/types/pattern.d.ts +9 -0
- package/build/cjs/schema/types/pattern.js +17 -0
- package/build/cjs/schema/types/patternProperties.d.ts +9 -0
- package/build/cjs/schema/types/patternProperties.js +18 -0
- package/build/cjs/schema/types/prefixItems.d.ts +8 -0
- package/build/cjs/schema/types/prefixItems.js +17 -0
- package/build/cjs/schema/types/properties.d.ts +9 -0
- package/build/cjs/schema/types/properties.js +18 -0
- package/build/cjs/schema/types/propertyNames.d.ts +9 -0
- package/build/cjs/schema/types/propertyNames.js +18 -0
- package/build/cjs/schema/types/ref.d.ts +9 -0
- package/build/cjs/schema/types/ref.js +16 -0
- package/build/cjs/schema/types/required.d.ts +9 -0
- package/build/cjs/schema/types/required.js +17 -0
- package/build/cjs/schema/types/schema.js +19 -0
- package/build/cjs/schema/types/static.d.ts +113 -0
- package/build/cjs/schema/types/static.js +3 -0
- package/build/cjs/schema/types/then.d.ts +9 -0
- package/build/cjs/schema/types/then.js +17 -0
- package/build/cjs/schema/types/type.d.ts +9 -0
- package/build/cjs/schema/types/type.js +18 -0
- package/build/cjs/schema/types/unevaluatedItems.d.ts +9 -0
- package/build/cjs/schema/types/unevaluatedItems.js +17 -0
- package/build/cjs/schema/types/unevaluatedProperties.d.ts +9 -0
- package/build/cjs/schema/types/unevaluatedProperties.js +17 -0
- package/build/cjs/schema/types/uniqueItems.d.ts +9 -0
- package/build/cjs/schema/types/uniqueItems.js +16 -0
- package/build/cjs/system/arguments/arguments.js +12 -0
- package/build/cjs/system/arguments/index.d.ts +1 -0
- package/build/cjs/system/arguments/index.js +4 -0
- package/build/cjs/system/environment/can-evaluate.js +29 -0
- package/build/cjs/system/environment/environment.d.ts +1 -0
- package/build/cjs/system/environment/environment.js +17 -0
- package/build/cjs/system/environment/index.d.ts +1 -0
- package/build/cjs/system/environment/index.js +4 -0
- package/build/cjs/system/hashing/hash.js +236 -0
- package/build/cjs/system/hashing/index.d.ts +1 -0
- package/build/cjs/system/hashing/index.js +4 -0
- package/build/cjs/system/index.d.ts +4 -0
- package/build/cjs/system/index.js +21 -0
- package/build/cjs/system/locale/_config.d.ts +7 -0
- package/build/cjs/system/locale/_config.js +20 -0
- package/build/cjs/system/locale/_locale.d.ts +40 -0
- package/build/cjs/system/locale/_locale.js +56 -0
- package/build/cjs/system/locale/ar_001.d.ts +3 -0
- package/build/cjs/system/locale/ar_001.js +44 -0
- package/build/cjs/system/locale/bn_BD.d.ts +3 -0
- package/build/cjs/system/locale/bn_BD.js +44 -0
- package/build/cjs/system/locale/cs_CZ.d.ts +3 -0
- package/build/cjs/system/locale/cs_CZ.js +44 -0
- package/build/cjs/system/locale/de_DE.d.ts +3 -0
- package/build/cjs/system/locale/de_DE.js +44 -0
- package/build/cjs/system/locale/el_GR.d.ts +3 -0
- package/build/cjs/system/locale/el_GR.js +44 -0
- package/build/cjs/system/locale/en_US.d.ts +3 -0
- package/build/cjs/system/locale/en_US.js +43 -0
- package/build/cjs/system/locale/es_419.d.ts +3 -0
- package/build/cjs/system/locale/es_419.js +44 -0
- package/build/cjs/system/locale/es_AR.d.ts +3 -0
- package/build/cjs/system/locale/es_AR.js +44 -0
- package/build/cjs/system/locale/es_ES.d.ts +3 -0
- package/build/cjs/system/locale/es_ES.js +44 -0
- package/build/cjs/system/locale/es_MX.d.ts +3 -0
- package/build/cjs/system/locale/es_MX.js +44 -0
- package/build/cjs/system/locale/fa_IR.d.ts +3 -0
- package/build/cjs/system/locale/fa_IR.js +44 -0
- package/build/cjs/system/locale/fil_PH.d.ts +3 -0
- package/build/cjs/system/locale/fil_PH.js +44 -0
- package/build/cjs/system/locale/fr_CA.d.ts +3 -0
- package/build/cjs/system/locale/fr_CA.js +44 -0
- package/build/cjs/system/locale/fr_FR.d.ts +3 -0
- package/build/cjs/system/locale/fr_FR.js +44 -0
- package/build/cjs/system/locale/ha_NG.d.ts +3 -0
- package/build/cjs/system/locale/ha_NG.js +44 -0
- package/build/cjs/system/locale/hi_IN.d.ts +3 -0
- package/build/cjs/system/locale/hi_IN.js +44 -0
- package/build/cjs/system/locale/hu_HU.d.ts +3 -0
- package/build/cjs/system/locale/hu_HU.js +44 -0
- package/build/cjs/system/locale/id_ID.d.ts +3 -0
- package/build/cjs/system/locale/id_ID.js +44 -0
- package/build/cjs/system/locale/index.d.ts +1 -0
- package/build/cjs/system/locale/index.js +4 -0
- package/build/cjs/system/locale/it_IT.d.ts +3 -0
- package/build/cjs/system/locale/it_IT.js +44 -0
- package/build/cjs/system/locale/ja_JP.d.ts +3 -0
- package/build/cjs/system/locale/ja_JP.js +44 -0
- package/build/cjs/system/locale/ko_KR.d.ts +3 -0
- package/build/cjs/system/locale/ko_KR.js +44 -0
- package/build/cjs/system/locale/ms_MY.d.ts +3 -0
- package/build/cjs/system/locale/ms_MY.js +44 -0
- package/build/cjs/system/locale/nl_NL.d.ts +3 -0
- package/build/cjs/system/locale/nl_NL.js +44 -0
- package/build/cjs/system/locale/pl_PL.d.ts +3 -0
- package/build/cjs/system/locale/pl_PL.js +44 -0
- package/build/cjs/system/locale/pt_BR.d.ts +3 -0
- package/build/cjs/system/locale/pt_BR.js +44 -0
- package/build/cjs/system/locale/pt_PT.d.ts +3 -0
- package/build/cjs/system/locale/pt_PT.js +44 -0
- package/build/cjs/system/locale/ro_RO.d.ts +3 -0
- package/build/cjs/system/locale/ro_RO.js +44 -0
- package/build/cjs/system/locale/ru_RU.d.ts +3 -0
- package/build/cjs/system/locale/ru_RU.js +44 -0
- package/build/cjs/system/locale/sv_SE.d.ts +3 -0
- package/build/cjs/system/locale/sv_SE.js +44 -0
- package/build/cjs/system/locale/sw_TZ.d.ts +3 -0
- package/build/cjs/system/locale/sw_TZ.js +44 -0
- package/build/cjs/system/locale/th_TH.d.ts +3 -0
- package/build/cjs/system/locale/th_TH.js +44 -0
- package/build/cjs/system/locale/tr_TR.d.ts +3 -0
- package/build/cjs/system/locale/tr_TR.js +44 -0
- package/build/cjs/system/locale/uk_UA.d.ts +3 -0
- package/build/cjs/system/locale/uk_UA.js +44 -0
- package/build/cjs/system/locale/ur_PK.d.ts +3 -0
- package/build/cjs/system/locale/ur_PK.js +44 -0
- package/build/cjs/system/locale/vi_VN.d.ts +3 -0
- package/build/cjs/system/locale/vi_VN.js +44 -0
- package/build/cjs/system/locale/yo_NG.d.ts +3 -0
- package/build/cjs/system/locale/yo_NG.js +44 -0
- package/build/cjs/system/locale/zh_Hans.d.ts +3 -0
- package/build/cjs/system/locale/zh_Hans.js +44 -0
- package/build/cjs/system/locale/zh_Hant.d.ts +3 -0
- package/build/cjs/system/locale/zh_Hant.js +44 -0
- package/build/cjs/system/memory/assign.js +13 -0
- package/build/cjs/system/memory/clone.js +66 -0
- package/build/cjs/system/memory/create.js +26 -0
- package/build/cjs/system/memory/discard.js +19 -0
- package/build/cjs/system/memory/index.d.ts +1 -0
- package/build/cjs/system/memory/index.js +4 -0
- package/build/cjs/system/memory/memory.d.ts +6 -0
- package/build/cjs/system/memory/memory.js +23 -0
- package/build/cjs/system/memory/metrics.js +11 -0
- package/build/cjs/system/memory/update.js +35 -0
- package/build/cjs/system/settings/index.d.ts +1 -0
- package/build/cjs/system/settings/index.js +4 -0
- package/build/cjs/system/settings/settings.js +35 -0
- package/build/cjs/system/system.d.ts +6 -0
- package/build/cjs/system/system.js +22 -0
- package/build/cjs/system/unreachable/index.d.ts +1 -0
- package/build/cjs/system/unreachable/index.js +17 -0
- package/build/cjs/system/unreachable/unreachable.js +9 -0
- package/build/cjs/type/action/_optional.d.ts +19 -0
- package/build/cjs/type/action/_optional.js +46 -0
- package/build/cjs/type/action/_readonly.d.ts +19 -0
- package/build/cjs/type/action/_readonly.js +46 -0
- package/build/cjs/type/action/awaited.d.ts +11 -0
- package/build/cjs/type/action/awaited.js +15 -0
- package/build/cjs/type/action/capitalize.d.ts +11 -0
- package/build/cjs/type/action/capitalize.js +15 -0
- package/build/cjs/type/action/conditional.d.ts +11 -0
- package/build/cjs/type/action/conditional.js +15 -0
- package/build/cjs/type/action/constructor-parameters.d.ts +11 -0
- package/build/cjs/type/action/constructor-parameters.js +15 -0
- package/build/cjs/type/action/evaluate.d.ts +11 -0
- package/build/cjs/type/action/evaluate.js +15 -0
- package/build/cjs/type/action/exclude.d.ts +11 -0
- package/build/cjs/type/action/exclude.js +15 -0
- package/build/cjs/type/action/extract.d.ts +11 -0
- package/build/cjs/type/action/extract.js +15 -0
- package/build/cjs/type/action/index.d.ts +26 -0
- package/build/cjs/type/action/index.js +42 -0
- package/build/cjs/type/action/indexed.d.ts +14 -0
- package/build/cjs/type/action/indexed.js +18 -0
- package/build/cjs/type/action/instance-type.d.ts +11 -0
- package/build/cjs/type/action/instance-type.js +15 -0
- package/build/cjs/type/action/interface.d.ts +14 -0
- package/build/cjs/type/action/interface.js +24 -0
- package/build/cjs/type/action/keyof.d.ts +11 -0
- package/build/cjs/type/action/keyof.js +15 -0
- package/build/cjs/type/action/lowercase.d.ts +11 -0
- package/build/cjs/type/action/lowercase.js +15 -0
- package/build/cjs/type/action/mapped.d.ts +12 -0
- package/build/cjs/type/action/mapped.js +15 -0
- package/build/cjs/type/action/module.d.ts +12 -0
- package/build/cjs/type/action/module.js +15 -0
- package/build/cjs/type/action/non-nullable.d.ts +11 -0
- package/build/cjs/type/action/non-nullable.js +15 -0
- package/build/cjs/type/action/omit.d.ts +14 -0
- package/build/cjs/type/action/omit.js +18 -0
- package/build/cjs/type/action/options.d.ts +12 -0
- package/build/cjs/type/action/options.js +15 -0
- package/build/cjs/type/action/parameters.d.ts +11 -0
- package/build/cjs/type/action/parameters.js +15 -0
- package/build/cjs/type/action/partial.d.ts +11 -0
- package/build/cjs/type/action/partial.js +15 -0
- package/build/cjs/type/action/pick.d.ts +14 -0
- package/build/cjs/type/action/pick.js +18 -0
- package/build/cjs/type/action/required.d.ts +11 -0
- package/build/cjs/type/action/required.js +15 -0
- package/build/cjs/type/action/return-type.d.ts +11 -0
- package/build/cjs/type/action/return-type.js +15 -0
- package/build/cjs/type/action/uncapitalize.d.ts +11 -0
- package/build/cjs/type/action/uncapitalize.js +15 -0
- package/build/cjs/type/action/uppercase.d.ts +11 -0
- package/build/cjs/type/action/uppercase.js +15 -0
- package/build/cjs/type/engine/awaited/index.d.ts +1 -0
- package/build/cjs/type/engine/awaited/index.js +17 -0
- package/build/cjs/type/engine/awaited/instantiate.d.ts +10 -0
- package/build/cjs/type/engine/awaited/instantiate.js +22 -0
- package/build/cjs/type/engine/call/instantiate.d.ts +20 -0
- package/build/cjs/type/engine/call/instantiate.js +41 -0
- package/build/cjs/type/engine/call/resolve-arguments.d.ts +13 -0
- package/build/cjs/type/engine/call/resolve-arguments.js +42 -0
- package/build/cjs/type/engine/call/resolve-target.d.ts +25 -0
- package/build/cjs/type/engine/call/resolve-target.js +30 -0
- package/build/cjs/type/engine/conditional/index.d.ts +1 -0
- package/build/cjs/type/engine/conditional/index.js +17 -0
- package/build/cjs/type/engine/conditional/instantiate.d.ts +10 -0
- package/build/cjs/type/engine/conditional/instantiate.js +22 -0
- package/build/cjs/type/engine/constructor-parameters/index.d.ts +1 -0
- package/build/cjs/type/engine/constructor-parameters/index.js +17 -0
- package/build/cjs/type/engine/constructor-parameters/instantiate.d.ts +14 -0
- package/build/cjs/type/engine/constructor-parameters/instantiate.js +24 -0
- package/build/cjs/type/engine/cyclic/candidates.d.ts +9 -0
- package/build/cjs/type/engine/cyclic/candidates.js +22 -0
- package/build/cjs/type/engine/cyclic/check.d.ts +24 -0
- package/build/cjs/type/engine/cyclic/check.js +57 -0
- package/build/cjs/type/engine/cyclic/dependencies.d.ts +25 -0
- package/build/cjs/type/engine/cyclic/dependencies.js +56 -0
- package/build/cjs/type/engine/cyclic/extends.d.ts +31 -0
- package/build/cjs/type/engine/cyclic/extends.js +56 -0
- package/build/cjs/type/engine/cyclic/index.d.ts +6 -0
- package/build/cjs/type/engine/cyclic/index.js +22 -0
- package/build/cjs/type/engine/cyclic/instantiate.d.ts +20 -0
- package/build/cjs/type/engine/cyclic/instantiate.js +32 -0
- package/build/cjs/type/engine/cyclic/target.d.ts +10 -0
- package/build/cjs/type/engine/cyclic/target.js +19 -0
- package/build/cjs/type/engine/enum/enum-to-union.d.ts +14 -0
- package/build/cjs/type/engine/enum/enum-to-union.js +29 -0
- package/build/cjs/type/engine/enum/index.d.ts +2 -0
- package/build/cjs/type/engine/enum/index.js +18 -0
- package/build/cjs/type/engine/enum/typescript-enum-to-enum-values.d.ts +8 -0
- package/build/cjs/type/engine/enum/typescript-enum-to-enum-values.js +13 -0
- package/build/cjs/type/engine/evaluate/broaden.d.ts +16 -0
- package/build/cjs/type/engine/evaluate/broaden.js +51 -0
- package/build/cjs/type/engine/evaluate/compare.d.ts +15 -0
- package/build/cjs/type/engine/evaluate/compare.js +25 -0
- package/build/cjs/type/engine/evaluate/composite.d.ts +30 -0
- package/build/cjs/type/engine/evaluate/composite.js +66 -0
- package/build/cjs/type/engine/evaluate/distribute.d.ts +26 -0
- package/build/cjs/type/engine/evaluate/distribute.js +56 -0
- package/build/cjs/type/engine/evaluate/evaluate.d.ts +11 -0
- package/build/cjs/type/engine/evaluate/evaluate.js +24 -0
- package/build/cjs/type/engine/evaluate/flatten.d.ts +6 -0
- package/build/cjs/type/engine/evaluate/flatten.js +14 -0
- package/build/cjs/type/engine/evaluate/index.d.ts +8 -0
- package/build/cjs/type/engine/evaluate/index.js +24 -0
- package/build/cjs/type/engine/evaluate/instantiate.d.ts +8 -0
- package/build/cjs/type/engine/evaluate/instantiate.js +20 -0
- package/build/cjs/type/engine/evaluate/narrow.d.ts +5 -0
- package/build/cjs/type/engine/evaluate/narrow.js +14 -0
- package/build/cjs/type/engine/exclude/index.d.ts +1 -0
- package/build/cjs/type/engine/exclude/index.js +17 -0
- package/build/cjs/type/engine/exclude/instantiate.d.ts +16 -0
- package/build/cjs/type/engine/exclude/instantiate.js +39 -0
- package/build/cjs/type/engine/extract/index.d.ts +1 -0
- package/build/cjs/type/engine/extract/index.js +17 -0
- package/build/cjs/type/engine/extract/instantiate.d.ts +16 -0
- package/build/cjs/type/engine/extract/instantiate.js +39 -0
- package/build/cjs/type/engine/helpers/index.d.ts +3 -0
- package/build/cjs/type/engine/helpers/index.js +19 -0
- package/build/cjs/type/engine/helpers/keys-to-indexer.d.ts +7 -0
- package/build/cjs/type/engine/helpers/keys-to-indexer.js +18 -0
- package/build/cjs/type/engine/helpers/keys.d.ts +3 -0
- package/build/cjs/type/engine/helpers/keys.js +11 -0
- package/build/cjs/type/engine/helpers/union.js +3 -0
- package/build/cjs/type/engine/index.d.ts +30 -0
- package/build/cjs/type/engine/index.js +54 -0
- package/build/cjs/type/engine/indexable/from-cyclic.d.ts +6 -0
- package/build/cjs/type/engine/indexable/from-cyclic.js +11 -0
- package/build/cjs/type/engine/indexable/from-enum.d.ts +6 -0
- package/build/cjs/type/engine/indexable/from-enum.js +11 -0
- package/build/cjs/type/engine/indexable/from-intersect.d.ts +5 -0
- package/build/cjs/type/engine/indexable/from-intersect.js +11 -0
- package/build/cjs/type/engine/indexable/from-literal.d.ts +3 -0
- package/build/cjs/type/engine/indexable/from-literal.js +8 -0
- package/build/cjs/type/engine/indexable/from-template-literal.d.ts +5 -0
- package/build/cjs/type/engine/indexable/from-template-literal.js +11 -0
- package/build/cjs/type/engine/indexable/from-type.d.ts +17 -0
- package/build/cjs/type/engine/indexable/from-type.js +25 -0
- package/build/cjs/type/engine/indexable/from-union.d.ts +4 -0
- package/build/cjs/type/engine/indexable/from-union.js +10 -0
- package/build/cjs/type/engine/indexable/to-indexable-keys.d.ts +10 -0
- package/build/cjs/type/engine/indexable/to-indexable-keys.js +15 -0
- package/build/cjs/type/engine/indexable/to-indexable.d.ts +9 -0
- package/build/cjs/type/engine/indexable/to-indexable.js +17 -0
- package/build/cjs/type/engine/indexed/array-indexer.d.ts +12 -0
- package/build/cjs/type/engine/indexed/array-indexer.js +21 -0
- package/build/cjs/type/engine/indexed/from-array.d.ts +15 -0
- package/build/cjs/type/engine/indexed/from-array.js +30 -0
- package/build/cjs/type/engine/indexed/from-object.d.ts +9 -0
- package/build/cjs/type/engine/indexed/from-object.js +21 -0
- package/build/cjs/type/engine/indexed/from-tuple.d.ts +13 -0
- package/build/cjs/type/engine/indexed/from-tuple.js +31 -0
- package/build/cjs/type/engine/indexed/index.d.ts +1 -0
- package/build/cjs/type/engine/indexed/index.js +17 -0
- package/build/cjs/type/engine/indexed/instantiate.d.ts +21 -0
- package/build/cjs/type/engine/indexed/instantiate.js +40 -0
- package/build/cjs/type/engine/instance-type/index.d.ts +1 -0
- package/build/cjs/type/engine/instance-type/index.js +17 -0
- package/build/cjs/type/engine/instance-type/instantiate.d.ts +12 -0
- package/build/cjs/type/engine/instance-type/instantiate.js +24 -0
- package/build/cjs/type/engine/instantiate.d.ts +162 -0
- package/build/cjs/type/engine/instantiate.js +173 -0
- package/build/cjs/type/engine/interface/index.d.ts +1 -0
- package/build/cjs/type/engine/interface/index.js +17 -0
- package/build/cjs/type/engine/interface/instantiate.d.ts +16 -0
- package/build/cjs/type/engine/interface/instantiate.js +22 -0
- package/build/cjs/type/engine/intrinsics/from-literal.d.ts +5 -0
- package/build/cjs/type/engine/intrinsics/from-literal.js +12 -0
- package/build/cjs/type/engine/intrinsics/from-template-literal.d.ts +6 -0
- package/build/cjs/type/engine/intrinsics/from-template-literal.js +11 -0
- package/build/cjs/type/engine/intrinsics/from-type.d.ts +10 -0
- package/build/cjs/type/engine/intrinsics/from-type.js +16 -0
- package/build/cjs/type/engine/intrinsics/from-union.d.ts +6 -0
- package/build/cjs/type/engine/intrinsics/from-union.js +10 -0
- package/build/cjs/type/engine/intrinsics/index.d.ts +1 -0
- package/build/cjs/type/engine/intrinsics/index.js +17 -0
- package/build/cjs/type/engine/intrinsics/instantiate.d.ts +34 -0
- package/build/cjs/type/engine/intrinsics/instantiate.js +54 -0
- package/build/cjs/type/engine/intrinsics/mapping.js +7 -0
- package/build/cjs/type/engine/keyof/from-array.d.ts +4 -0
- package/build/cjs/type/engine/keyof/from-array.js +8 -0
- package/build/cjs/type/engine/keyof/from-object.d.ts +10 -0
- package/build/cjs/type/engine/keyof/from-object.js +23 -0
- package/build/cjs/type/engine/keyof/from-record.d.ts +4 -0
- package/build/cjs/type/engine/keyof/from-record.js +8 -0
- package/build/cjs/type/engine/keyof/from-tuple.d.ts +5 -0
- package/build/cjs/type/engine/keyof/from-tuple.js +10 -0
- package/build/cjs/type/engine/keyof/index.d.ts +1 -0
- package/build/cjs/type/engine/keyof/index.js +17 -0
- package/build/cjs/type/engine/keyof/instantiate.d.ts +25 -0
- package/build/cjs/type/engine/keyof/instantiate.js +47 -0
- package/build/cjs/type/engine/mapped/index.d.ts +1 -0
- package/build/cjs/type/engine/mapped/index.js +17 -0
- package/build/cjs/type/engine/mapped/instantiate.d.ts +28 -0
- package/build/cjs/type/engine/mapped/instantiate.js +50 -0
- package/build/cjs/type/engine/mapped/mapped-keys.d.ts +14 -0
- package/build/cjs/type/engine/mapped/mapped-keys.js +32 -0
- package/build/cjs/type/engine/module/index.d.ts +1 -0
- package/build/cjs/type/engine/module/index.js +17 -0
- package/build/cjs/type/engine/module/instantiate.d.ts +21 -0
- package/build/cjs/type/engine/module/instantiate.js +36 -0
- package/build/cjs/type/engine/non-nullable/index.d.ts +1 -0
- package/build/cjs/type/engine/non-nullable/index.js +17 -0
- package/build/cjs/type/engine/non-nullable/instantiate.d.ts +15 -0
- package/build/cjs/type/engine/non-nullable/instantiate.js +24 -0
- package/build/cjs/type/engine/object/collapse.d.ts +12 -0
- package/build/cjs/type/engine/object/collapse.js +17 -0
- package/build/cjs/type/engine/object/from-cyclic.d.ts +6 -0
- package/build/cjs/type/engine/object/from-cyclic.js +11 -0
- package/build/cjs/type/engine/object/from-intersect.d.ts +17 -0
- package/build/cjs/type/engine/object/from-intersect.js +24 -0
- package/build/cjs/type/engine/object/from-object.d.ts +3 -0
- package/build/cjs/type/engine/object/from-object.js +7 -0
- package/build/cjs/type/engine/object/from-tuple.d.ts +6 -0
- package/build/cjs/type/engine/object/from-tuple.js +12 -0
- package/build/cjs/type/engine/object/from-type.d.ts +14 -0
- package/build/cjs/type/engine/object/from-type.js +22 -0
- package/build/cjs/type/engine/object/from-union.d.ts +12 -0
- package/build/cjs/type/engine/object/from-union.js +29 -0
- package/build/cjs/type/engine/object/index.d.ts +1 -0
- package/build/cjs/type/engine/object/index.js +17 -0
- package/build/cjs/type/engine/omit/index.d.ts +1 -0
- package/build/cjs/type/engine/omit/index.js +17 -0
- package/build/cjs/type/engine/omit/instantiate.d.ts +16 -0
- package/build/cjs/type/engine/omit/instantiate.js +34 -0
- package/build/cjs/type/engine/options/index.d.ts +1 -0
- package/build/cjs/type/engine/options/index.js +17 -0
- package/build/cjs/type/engine/options/instantiate.d.ts +8 -0
- package/build/cjs/type/engine/options/instantiate.js +16 -0
- package/build/cjs/type/engine/parameters/index.d.ts +1 -0
- package/build/cjs/type/engine/parameters/index.js +17 -0
- package/build/cjs/type/engine/parameters/instantiate.d.ts +14 -0
- package/build/cjs/type/engine/parameters/instantiate.js +24 -0
- package/build/cjs/type/engine/partial/from-cyclic.d.ts +10 -0
- package/build/cjs/type/engine/partial/from-cyclic.js +14 -0
- package/build/cjs/type/engine/partial/from-intersect.d.ts +5 -0
- package/build/cjs/type/engine/partial/from-intersect.js +10 -0
- package/build/cjs/type/engine/partial/from-object.d.ts +8 -0
- package/build/cjs/type/engine/partial/from-object.js +14 -0
- package/build/cjs/type/engine/partial/from-type.d.ts +12 -0
- package/build/cjs/type/engine/partial/from-type.js +19 -0
- package/build/cjs/type/engine/partial/from-union.d.ts +5 -0
- package/build/cjs/type/engine/partial/from-union.js +10 -0
- package/build/cjs/type/engine/partial/index.d.ts +1 -0
- package/build/cjs/type/engine/partial/index.js +17 -0
- package/build/cjs/type/engine/partial/instantiate.d.ts +9 -0
- package/build/cjs/type/engine/partial/instantiate.js +17 -0
- package/build/cjs/type/engine/patterns/index.d.ts +2 -0
- package/build/cjs/type/engine/patterns/index.js +18 -0
- package/build/cjs/type/engine/patterns/pattern.d.ts +7 -0
- package/build/cjs/type/engine/patterns/pattern.js +16 -0
- package/build/cjs/type/engine/patterns/template.d.ts +7 -0
- package/build/cjs/type/engine/patterns/template.js +23 -0
- package/build/cjs/type/engine/pick/index.d.ts +1 -0
- package/build/cjs/type/engine/pick/index.js +17 -0
- package/build/cjs/type/engine/pick/instantiate.d.ts +17 -0
- package/build/cjs/type/engine/pick/instantiate.js +34 -0
- package/build/cjs/type/engine/record/from-key-any.d.ts +4 -0
- package/build/cjs/type/engine/record/from-key-any.js +9 -0
- package/build/cjs/type/engine/record/from-key-boolean.d.ts +7 -0
- package/build/cjs/type/engine/record/from-key-boolean.js +8 -0
- package/build/cjs/type/engine/record/from-key-enum.d.ts +6 -0
- package/build/cjs/type/engine/record/from-key-enum.js +11 -0
- package/build/cjs/type/engine/record/from-key-integer.d.ts +5 -0
- package/build/cjs/type/engine/record/from-key-integer.js +10 -0
- package/build/cjs/type/engine/record/from-key-intersect.d.ts +5 -0
- package/build/cjs/type/engine/record/from-key-intersect.js +11 -0
- package/build/cjs/type/engine/record/from-key-literal.d.ts +11 -0
- package/build/cjs/type/engine/record/from-key-literal.js +13 -0
- package/build/cjs/type/engine/record/from-key-number.d.ts +5 -0
- package/build/cjs/type/engine/record/from-key-number.js +10 -0
- package/build/cjs/type/engine/record/from-key-string.d.ts +5 -0
- package/build/cjs/type/engine/record/from-key-string.js +15 -0
- package/build/cjs/type/engine/record/from-key-template-literal.d.ts +8 -0
- package/build/cjs/type/engine/record/from-key-template-literal.js +15 -0
- package/build/cjs/type/engine/record/from-key-union.d.ts +20 -0
- package/build/cjs/type/engine/record/from-key-union.js +42 -0
- package/build/cjs/type/engine/record/from-key.d.ts +24 -0
- package/build/cjs/type/engine/record/from-key.js +43 -0
- package/build/cjs/type/engine/record/index.d.ts +1 -0
- package/build/cjs/type/engine/record/index.js +17 -0
- package/build/cjs/type/engine/record/instantiate.d.ts +9 -0
- package/build/cjs/type/engine/record/instantiate.js +19 -0
- package/build/cjs/type/engine/record/record-create.d.ts +3 -0
- package/build/cjs/type/engine/record/record-create.js +10 -0
- package/build/cjs/type/engine/ref/index.d.ts +1 -0
- package/build/cjs/type/engine/ref/index.js +17 -0
- package/build/cjs/type/engine/ref/instantiate.d.ts +6 -0
- package/build/cjs/type/engine/ref/instantiate.js +14 -0
- package/build/cjs/type/engine/required/from-cyclic.d.ts +10 -0
- package/build/cjs/type/engine/required/from-cyclic.js +14 -0
- package/build/cjs/type/engine/required/from-intersect.d.ts +5 -0
- package/build/cjs/type/engine/required/from-intersect.js +10 -0
- package/build/cjs/type/engine/required/from-object.d.ts +8 -0
- package/build/cjs/type/engine/required/from-object.js +14 -0
- package/build/cjs/type/engine/required/from-type.d.ts +12 -0
- package/build/cjs/type/engine/required/from-type.js +19 -0
- package/build/cjs/type/engine/required/from-union.d.ts +5 -0
- package/build/cjs/type/engine/required/from-union.js +10 -0
- package/build/cjs/type/engine/required/index.d.ts +1 -0
- package/build/cjs/type/engine/required/index.js +17 -0
- package/build/cjs/type/engine/required/instantiate.d.ts +9 -0
- package/build/cjs/type/engine/required/instantiate.js +17 -0
- package/build/cjs/type/engine/rest/index.d.ts +1 -0
- package/build/cjs/type/engine/rest/index.js +17 -0
- package/build/cjs/type/engine/rest/spread.d.ts +12 -0
- package/build/cjs/type/engine/rest/spread.js +22 -0
- package/build/cjs/type/engine/return-type/index.d.ts +1 -0
- package/build/cjs/type/engine/return-type/index.js +17 -0
- package/build/cjs/type/engine/return-type/instantiate.d.ts +11 -0
- package/build/cjs/type/engine/return-type/instantiate.js +21 -0
- package/build/cjs/type/engine/template-literal/create.js +8 -0
- package/build/cjs/type/engine/template-literal/decode.d.ts +20 -0
- package/build/cjs/type/engine/template-literal/decode.js +76 -0
- package/build/cjs/type/engine/template-literal/encode.d.ts +31 -0
- package/build/cjs/type/engine/template-literal/encode.js +83 -0
- package/build/cjs/type/engine/template-literal/finite.d.ts +12 -0
- package/build/cjs/type/engine/template-literal/finite.js +33 -0
- package/build/cjs/type/engine/template-literal/index.d.ts +5 -0
- package/build/cjs/type/engine/template-literal/index.js +21 -0
- package/build/cjs/type/engine/template-literal/instantiate.d.ts +9 -0
- package/build/cjs/type/engine/template-literal/instantiate.js +17 -0
- package/build/cjs/type/engine/template-literal/static.d.ts +18 -0
- package/build/cjs/type/engine/template-literal/static.js +3 -0
- package/build/cjs/type/engine/tuple/to-object.d.ts +12 -0
- package/build/cjs/type/engine/tuple/to-object.js +17 -0
- package/build/cjs/type/extends/any.d.ts +9 -0
- package/build/cjs/type/extends/any.js +15 -0
- package/build/cjs/type/extends/array.d.ts +7 -0
- package/build/cjs/type/extends/array.js +12 -0
- package/build/cjs/type/extends/async-iterator.d.ts +7 -0
- package/build/cjs/type/extends/async-iterator.js +12 -0
- package/build/cjs/type/extends/bigint.d.ts +7 -0
- package/build/cjs/type/extends/bigint.js +12 -0
- package/build/cjs/type/extends/boolean.d.ts +7 -0
- package/build/cjs/type/extends/boolean.js +12 -0
- package/build/cjs/type/extends/constructor.d.ts +8 -0
- package/build/cjs/type/extends/constructor.js +19 -0
- package/build/cjs/type/extends/enum.d.ts +7 -0
- package/build/cjs/type/extends/enum.js +9 -0
- package/build/cjs/type/extends/extends-left.d.ts +55 -0
- package/build/cjs/type/extends/extends-left.js +86 -0
- package/build/cjs/type/extends/extends-right.d.ts +25 -0
- package/build/cjs/type/extends/extends-right.js +62 -0
- package/build/cjs/type/extends/extends.d.ts +11 -0
- package/build/cjs/type/extends/extends.js +18 -0
- package/build/cjs/type/extends/function.d.ts +8 -0
- package/build/cjs/type/extends/function.js +19 -0
- package/build/cjs/type/extends/index.d.ts +2 -0
- package/build/cjs/type/extends/index.js +6 -0
- package/build/cjs/type/extends/inference.d.ts +34 -0
- package/build/cjs/type/extends/inference.js +80 -0
- package/build/cjs/type/extends/integer.d.ts +8 -0
- package/build/cjs/type/extends/integer.js +13 -0
- package/build/cjs/type/extends/intersect.d.ts +6 -0
- package/build/cjs/type/extends/intersect.js +18 -0
- package/build/cjs/type/extends/iterator.d.ts +7 -0
- package/build/cjs/type/extends/iterator.js +12 -0
- package/build/cjs/type/extends/literal.d.ts +17 -0
- package/build/cjs/type/extends/literal.js +44 -0
- package/build/cjs/type/extends/never.d.ts +8 -0
- package/build/cjs/type/extends/never.js +12 -0
- package/build/cjs/type/extends/null.d.ts +7 -0
- package/build/cjs/type/extends/null.js +12 -0
- package/build/cjs/type/extends/number.d.ts +7 -0
- package/build/cjs/type/extends/number.js +12 -0
- package/build/cjs/type/extends/object.d.ts +25 -0
- package/build/cjs/type/extends/object.js +92 -0
- package/build/cjs/type/extends/parameters.d.ts +15 -0
- package/build/cjs/type/extends/parameters.js +40 -0
- package/build/cjs/type/extends/promise.d.ts +7 -0
- package/build/cjs/type/extends/promise.js +12 -0
- package/build/cjs/type/extends/result.d.ts +21 -0
- package/build/cjs/type/extends/result.js +42 -0
- package/build/cjs/type/extends/return-type.d.ts +7 -0
- package/build/cjs/type/extends/return-type.js +12 -0
- package/build/cjs/type/extends/string.d.ts +7 -0
- package/build/cjs/type/extends/string.js +12 -0
- package/build/cjs/type/extends/symbol.d.ts +7 -0
- package/build/cjs/type/extends/symbol.js +12 -0
- package/build/cjs/type/extends/template-literal.d.ts +6 -0
- package/build/cjs/type/extends/template-literal.js +10 -0
- package/build/cjs/type/extends/tuple.d.ts +25 -0
- package/build/cjs/type/extends/tuple.js +85 -0
- package/build/cjs/type/extends/undefined.d.ts +8 -0
- package/build/cjs/type/extends/undefined.js +13 -0
- package/build/cjs/type/extends/union.d.ts +11 -0
- package/build/cjs/type/extends/union.js +39 -0
- package/build/cjs/type/extends/unknown.d.ts +9 -0
- package/build/cjs/type/extends/unknown.js +15 -0
- package/build/cjs/type/extends/void.d.ts +7 -0
- package/build/cjs/type/extends/void.js +12 -0
- package/build/cjs/type/index.d.ts +5 -0
- package/build/cjs/type/index.js +21 -0
- package/build/cjs/type/script/index.d.ts +1 -0
- package/build/cjs/type/script/index.js +17 -0
- package/build/cjs/type/script/mapping.d.ts +358 -0
- package/build/cjs/type/script/mapping.js +644 -0
- package/build/cjs/type/script/parser.d.ts +256 -0
- package/build/cjs/type/script/parser.js +264 -0
- package/build/cjs/type/script/script.d.ts +17 -0
- package/build/cjs/type/script/script.js +24 -0
- package/build/cjs/type/script/token/bigint.d.ts +8 -0
- package/build/cjs/type/script/token/bigint.js +23 -0
- package/build/cjs/type/script/token/const.d.ts +11 -0
- package/build/cjs/type/script/token/const.js +21 -0
- package/build/cjs/type/script/token/ident.d.ts +16 -0
- package/build/cjs/type/script/token/ident.js +38 -0
- package/build/cjs/type/script/token/index.d.ts +9 -0
- package/build/cjs/type/script/token/index.js +25 -0
- package/build/cjs/type/script/token/integer.d.ts +19 -0
- package/build/cjs/type/script/token/integer.js +48 -0
- package/build/cjs/type/script/token/internal/char.js +28 -0
- package/build/cjs/type/script/token/internal/guard.d.ts +1 -0
- package/build/cjs/type/script/token/internal/guard.js +21 -0
- package/build/cjs/type/script/token/internal/many.d.ts +7 -0
- package/build/cjs/type/script/token/internal/many.js +20 -0
- package/build/cjs/type/script/token/internal/optional.d.ts +5 -0
- package/build/cjs/type/script/token/internal/optional.js +15 -0
- package/build/cjs/type/script/token/internal/result.js +10 -0
- package/build/cjs/type/script/token/internal/take.js +22 -0
- package/build/cjs/type/script/token/internal/trim.d.ts +19 -0
- package/build/cjs/type/script/token/internal/trim.js +38 -0
- package/build/cjs/type/script/token/number.d.ts +20 -0
- package/build/cjs/type/script/token/number.js +68 -0
- package/build/cjs/type/script/token/span.d.ts +10 -0
- package/build/cjs/type/script/token/span.js +38 -0
- package/build/cjs/type/script/token/string.d.ts +11 -0
- package/build/cjs/type/script/token/string.js +27 -0
- package/build/cjs/type/script/token/until.js +24 -0
- package/build/cjs/type/script/token/until_1.d.ts +5 -0
- package/build/cjs/type/script/token/until_1.js +19 -0
- package/build/cjs/type/types/_codec.d.ts +30 -0
- package/build/cjs/type/types/_codec.js +68 -0
- package/build/cjs/type/types/_optional.d.ts +16 -0
- package/build/cjs/type/types/_optional.js +33 -0
- package/build/cjs/type/types/_readonly.d.ts +16 -0
- package/build/cjs/type/types/_readonly.js +32 -0
- package/build/cjs/type/types/_refine.d.ts +19 -0
- package/build/cjs/type/types/_refine.js +25 -0
- package/build/cjs/type/types/any.d.ts +10 -0
- package/build/cjs/type/types/any.js +22 -0
- package/build/cjs/type/types/array.d.ts +16 -0
- package/build/cjs/type/types/array.js +29 -0
- package/build/cjs/type/types/async-iterator.d.ts +16 -0
- package/build/cjs/type/types/async-iterator.js +29 -0
- package/build/cjs/type/types/base.d.ts +29 -0
- package/build/cjs/type/types/base.js +72 -0
- package/build/cjs/type/types/bigint.d.ts +12 -0
- package/build/cjs/type/types/bigint.js +26 -0
- package/build/cjs/type/types/boolean.d.ts +11 -0
- package/build/cjs/type/types/boolean.js +21 -0
- package/build/cjs/type/types/call.d.ts +16 -0
- package/build/cjs/type/types/call.js +26 -0
- package/build/cjs/type/types/constructor.d.ts +18 -0
- package/build/cjs/type/types/constructor.js +29 -0
- package/build/cjs/type/types/cyclic.d.ts +16 -0
- package/build/cjs/type/types/cyclic.js +34 -0
- package/build/cjs/type/types/deferred.d.ts +12 -0
- package/build/cjs/type/types/deferred.js +20 -0
- package/build/cjs/type/types/enum.d.ts +16 -0
- package/build/cjs/type/types/enum.js +21 -0
- package/build/cjs/type/types/function.d.ts +20 -0
- package/build/cjs/type/types/function.js +29 -0
- package/build/cjs/type/types/generic.d.ts +13 -0
- package/build/cjs/type/types/generic.js +21 -0
- package/build/cjs/type/types/identifier.d.ts +11 -0
- package/build/cjs/type/types/identifier.js +21 -0
- package/build/cjs/type/types/index.d.ts +47 -0
- package/build/cjs/type/types/index.js +69 -0
- package/build/cjs/type/types/infer.d.ts +15 -0
- package/build/cjs/type/types/infer.js +24 -0
- package/build/cjs/type/types/integer.d.ts +12 -0
- package/build/cjs/type/types/integer.js +26 -0
- package/build/cjs/type/types/intersect.d.ts +15 -0
- package/build/cjs/type/types/intersect.js +29 -0
- package/build/cjs/type/types/iterator.d.ts +16 -0
- package/build/cjs/type/types/iterator.js +29 -0
- package/build/cjs/type/types/literal.d.ts +22 -0
- package/build/cjs/type/types/literal.js +50 -0
- package/build/cjs/type/types/never.d.ts +12 -0
- package/build/cjs/type/types/never.js +26 -0
- package/build/cjs/type/types/null.d.ts +11 -0
- package/build/cjs/type/types/null.js +21 -0
- package/build/cjs/type/types/number.d.ts +12 -0
- package/build/cjs/type/types/number.js +26 -0
- package/build/cjs/type/types/object.d.ts +20 -0
- package/build/cjs/type/types/object.js +34 -0
- package/build/cjs/type/types/parameter.d.ts +17 -0
- package/build/cjs/type/types/parameter.js +25 -0
- package/build/cjs/type/types/promise.d.ts +16 -0
- package/build/cjs/type/types/promise.js +29 -0
- package/build/cjs/type/types/properties.d.ts +42 -0
- package/build/cjs/type/types/properties.js +21 -0
- package/build/cjs/type/types/record.d.ts +44 -0
- package/build/cjs/type/types/record.js +73 -0
- package/build/cjs/type/types/ref.d.ts +19 -0
- package/build/cjs/type/types/ref.js +21 -0
- package/build/cjs/type/types/rest.d.ts +11 -0
- package/build/cjs/type/types/rest.js +21 -0
- package/build/cjs/type/types/schema.js +19 -0
- package/build/cjs/type/types/static.d.ts +47 -0
- package/build/cjs/type/types/static.js +4 -0
- package/build/cjs/type/types/string.d.ts +12 -0
- package/build/cjs/type/types/string.js +27 -0
- package/build/cjs/type/types/symbol.d.ts +11 -0
- package/build/cjs/type/types/symbol.js +21 -0
- package/build/cjs/type/types/template-literal.d.ts +24 -0
- package/build/cjs/type/types/template-literal.js +32 -0
- package/build/cjs/type/types/this.d.ts +14 -0
- package/build/cjs/type/types/this.js +21 -0
- package/build/cjs/type/types/tuple.d.ts +37 -0
- package/build/cjs/type/types/tuple.js +30 -0
- package/build/cjs/type/types/undefined.d.ts +11 -0
- package/build/cjs/type/types/undefined.js +21 -0
- package/build/cjs/type/types/union.d.ts +15 -0
- package/build/cjs/type/types/union.js +29 -0
- package/build/cjs/type/types/unknown.d.ts +10 -0
- package/build/cjs/type/types/unknown.js +21 -0
- package/build/cjs/type/types/unsafe.d.ts +11 -0
- package/build/cjs/type/types/unsafe.js +22 -0
- package/build/cjs/type/types/void.d.ts +11 -0
- package/build/cjs/type/types/void.js +21 -0
- package/build/cjs/typebox.d.ts +71 -0
- package/build/cjs/typebox.js +211 -0
- package/build/cjs/value/assert/assert.d.ts +14 -0
- package/build/cjs/value/assert/assert.js +32 -0
- package/build/cjs/value/assert/index.d.ts +1 -0
- package/build/cjs/value/assert/index.js +17 -0
- package/build/cjs/value/check/check.d.ts +5 -0
- package/build/cjs/value/check/check.js +14 -0
- package/build/cjs/value/check/index.d.ts +1 -0
- package/build/cjs/value/check/index.js +17 -0
- package/build/cjs/value/clean/additional.d.ts +2 -0
- package/build/cjs/value/clean/additional.js +9 -0
- package/build/cjs/value/clean/clean.d.ts +15 -0
- package/build/cjs/value/clean/clean.js +18 -0
- package/build/cjs/value/clean/from-array.d.ts +2 -0
- package/build/cjs/value/clean/from-array.js +11 -0
- package/build/cjs/value/clean/from-base.d.ts +2 -0
- package/build/cjs/value/clean/from-base.js +7 -0
- package/build/cjs/value/clean/from-cyclic.d.ts +2 -0
- package/build/cjs/value/clean/from-cyclic.js +9 -0
- package/build/cjs/value/clean/from-intersect.d.ts +2 -0
- package/build/cjs/value/clean/from-intersect.js +28 -0
- package/build/cjs/value/clean/from-object.d.ts +2 -0
- package/build/cjs/value/clean/from-object.js +34 -0
- package/build/cjs/value/clean/from-record.d.ts +2 -0
- package/build/cjs/value/clean/from-record.js +35 -0
- package/build/cjs/value/clean/from-ref.d.ts +2 -0
- package/build/cjs/value/clean/from-ref.js +11 -0
- package/build/cjs/value/clean/from-tuple.d.ts +2 -0
- package/build/cjs/value/clean/from-tuple.js +17 -0
- package/build/cjs/value/clean/from-type.d.ts +2 -0
- package/build/cjs/value/clean/from-type.js +26 -0
- package/build/cjs/value/clean/from-union.d.ts +2 -0
- package/build/cjs/value/clean/from-union.js +15 -0
- package/build/cjs/value/clean/index.d.ts +1 -0
- package/build/cjs/value/clean/index.js +17 -0
- package/build/cjs/value/clone/clone.js +85 -0
- package/build/cjs/value/clone/index.d.ts +1 -0
- package/build/cjs/value/clone/index.js +17 -0
- package/build/cjs/value/codec/callback.d.ts +2 -0
- package/build/cjs/value/codec/callback.js +28 -0
- package/build/cjs/value/codec/decode.d.ts +22 -0
- package/build/cjs/value/codec/decode.js +61 -0
- package/build/cjs/value/codec/encode.d.ts +12 -0
- package/build/cjs/value/codec/encode.js +56 -0
- package/build/cjs/value/codec/from-array.d.ts +2 -0
- package/build/cjs/value/codec/from-array.js +41 -0
- package/build/cjs/value/codec/from-cyclic.d.ts +2 -0
- package/build/cjs/value/codec/from-cyclic.js +11 -0
- package/build/cjs/value/codec/from-intersect.d.ts +2 -0
- package/build/cjs/value/codec/from-intersect.js +31 -0
- package/build/cjs/value/codec/from-object.d.ts +2 -0
- package/build/cjs/value/codec/from-object.js +48 -0
- package/build/cjs/value/codec/from-record.d.ts +2 -0
- package/build/cjs/value/codec/from-record.js +47 -0
- package/build/cjs/value/codec/from-ref.d.ts +2 -0
- package/build/cjs/value/codec/from-ref.js +13 -0
- package/build/cjs/value/codec/from-tuple.d.ts +2 -0
- package/build/cjs/value/codec/from-tuple.js +38 -0
- package/build/cjs/value/codec/from-type.d.ts +2 -0
- package/build/cjs/value/codec/from-type.js +25 -0
- package/build/cjs/value/codec/from-union.d.ts +2 -0
- package/build/cjs/value/codec/from-union.js +45 -0
- package/build/cjs/value/codec/has.d.ts +5 -0
- package/build/cjs/value/codec/has.js +96 -0
- package/build/cjs/value/codec/index.d.ts +3 -0
- package/build/cjs/value/codec/index.js +19 -0
- package/build/cjs/value/convert/convert.d.ts +13 -0
- package/build/cjs/value/convert/convert.js +18 -0
- package/build/cjs/value/convert/from-additional.d.ts +6 -0
- package/build/cjs/value/convert/from-additional.js +21 -0
- package/build/cjs/value/convert/from-array.d.ts +2 -0
- package/build/cjs/value/convert/from-array.js +11 -0
- package/build/cjs/value/convert/from-base.d.ts +2 -0
- package/build/cjs/value/convert/from-base.js +7 -0
- package/build/cjs/value/convert/from-bigint.d.ts +2 -0
- package/build/cjs/value/convert/from-bigint.js +12 -0
- package/build/cjs/value/convert/from-boolean.d.ts +2 -0
- package/build/cjs/value/convert/from-boolean.js +12 -0
- package/build/cjs/value/convert/from-cyclic.d.ts +2 -0
- package/build/cjs/value/convert/from-cyclic.js +9 -0
- package/build/cjs/value/convert/from-enum.d.ts +2 -0
- package/build/cjs/value/convert/from-enum.js +10 -0
- package/build/cjs/value/convert/from-integer.d.ts +2 -0
- package/build/cjs/value/convert/from-integer.js +12 -0
- package/build/cjs/value/convert/from-intersect.d.ts +2 -0
- package/build/cjs/value/convert/from-intersect.js +10 -0
- package/build/cjs/value/convert/from-literal.d.ts +2 -0
- package/build/cjs/value/convert/from-literal.js +47 -0
- package/build/cjs/value/convert/from-null.d.ts +2 -0
- package/build/cjs/value/convert/from-null.js +12 -0
- package/build/cjs/value/convert/from-number.d.ts +2 -0
- package/build/cjs/value/convert/from-number.js +12 -0
- package/build/cjs/value/convert/from-object.d.ts +2 -0
- package/build/cjs/value/convert/from-object.js +31 -0
- package/build/cjs/value/convert/from-record.d.ts +2 -0
- package/build/cjs/value/convert/from-record.js +26 -0
- package/build/cjs/value/convert/from-ref.d.ts +2 -0
- package/build/cjs/value/convert/from-ref.js +11 -0
- package/build/cjs/value/convert/from-string.d.ts +2 -0
- package/build/cjs/value/convert/from-string.js +12 -0
- package/build/cjs/value/convert/from-template-literal.d.ts +2 -0
- package/build/cjs/value/convert/from-template-literal.js +10 -0
- package/build/cjs/value/convert/from-tuple.d.ts +2 -0
- package/build/cjs/value/convert/from-tuple.js +14 -0
- package/build/cjs/value/convert/from-type.d.ts +2 -0
- package/build/cjs/value/convert/from-type.js +48 -0
- package/build/cjs/value/convert/from-undefined.d.ts +2 -0
- package/build/cjs/value/convert/from-undefined.js +12 -0
- package/build/cjs/value/convert/from-union.d.ts +2 -0
- package/build/cjs/value/convert/from-union.js +16 -0
- package/build/cjs/value/convert/from-void.d.ts +2 -0
- package/build/cjs/value/convert/from-void.js +12 -0
- package/build/cjs/value/convert/index.d.ts +1 -0
- package/build/cjs/value/convert/index.js +17 -0
- package/build/cjs/value/convert/try/index.d.ts +1 -0
- package/build/cjs/value/convert/try/index.js +4 -0
- package/build/cjs/value/convert/try/try-bigint.d.ts +2 -0
- package/build/cjs/value/convert/try/try-bigint.js +77 -0
- package/build/cjs/value/convert/try/try-boolean.d.ts +2 -0
- package/build/cjs/value/convert/try/try-boolean.js +67 -0
- package/build/cjs/value/convert/try/try-null.d.ts +2 -0
- package/build/cjs/value/convert/try/try-null.js +64 -0
- package/build/cjs/value/convert/try/try-number.d.ts +2 -0
- package/build/cjs/value/convert/try/try-number.js +79 -0
- package/build/cjs/value/convert/try/try-result.js +23 -0
- package/build/cjs/value/convert/try/try-string.d.ts +2 -0
- package/build/cjs/value/convert/try/try-string.js +59 -0
- package/build/cjs/value/convert/try/try-undefined.d.ts +2 -0
- package/build/cjs/value/convert/try/try-undefined.js +64 -0
- package/build/cjs/value/convert/try/try.d.ts +7 -0
- package/build/cjs/value/convert/try/try.js +23 -0
- package/build/cjs/value/create/create.d.ts +5 -0
- package/build/cjs/value/create/create.js +14 -0
- package/build/cjs/value/create/error.d.ts +5 -0
- package/build/cjs/value/create/error.js +11 -0
- package/build/cjs/value/create/from-array.d.ts +2 -0
- package/build/cjs/value/create/from-array.js +13 -0
- package/build/cjs/value/create/from-async-iterator.d.ts +2 -0
- package/build/cjs/value/create/from-async-iterator.js +8 -0
- package/build/cjs/value/create/from-base.d.ts +2 -0
- package/build/cjs/value/create/from-base.js +7 -0
- package/build/cjs/value/create/from-bigint.d.ts +2 -0
- package/build/cjs/value/create/from-bigint.js +10 -0
- package/build/cjs/value/create/from-boolean.d.ts +2 -0
- package/build/cjs/value/create/from-boolean.js +7 -0
- package/build/cjs/value/create/from-constructor.d.ts +2 -0
- package/build/cjs/value/create/from-constructor.js +13 -0
- package/build/cjs/value/create/from-cyclic.d.ts +2 -0
- package/build/cjs/value/create/from-cyclic.js +9 -0
- package/build/cjs/value/create/from-default.d.ts +3 -0
- package/build/cjs/value/create/from-default.js +13 -0
- package/build/cjs/value/create/from-enum.d.ts +2 -0
- package/build/cjs/value/create/from-enum.js +9 -0
- package/build/cjs/value/create/from-function.d.ts +2 -0
- package/build/cjs/value/create/from-function.js +9 -0
- package/build/cjs/value/create/from-integer.d.ts +2 -0
- package/build/cjs/value/create/from-integer.js +11 -0
- package/build/cjs/value/create/from-intersect.d.ts +2 -0
- package/build/cjs/value/create/from-intersect.js +9 -0
- package/build/cjs/value/create/from-iterator.d.ts +2 -0
- package/build/cjs/value/create/from-iterator.js +8 -0
- package/build/cjs/value/create/from-literal.d.ts +2 -0
- package/build/cjs/value/create/from-literal.js +7 -0
- package/build/cjs/value/create/from-never.d.ts +2 -0
- package/build/cjs/value/create/from-never.js +8 -0
- package/build/cjs/value/create/from-null.d.ts +2 -0
- package/build/cjs/value/create/from-null.js +7 -0
- package/build/cjs/value/create/from-number.d.ts +2 -0
- package/build/cjs/value/create/from-number.js +11 -0
- package/build/cjs/value/create/from-object.d.ts +2 -0
- package/build/cjs/value/create/from-object.js +12 -0
- package/build/cjs/value/create/from-promise.d.ts +2 -0
- package/build/cjs/value/create/from-promise.js +8 -0
- package/build/cjs/value/create/from-record.d.ts +2 -0
- package/build/cjs/value/create/from-record.js +11 -0
- package/build/cjs/value/create/from-ref.d.ts +2 -0
- package/build/cjs/value/create/from-ref.js +12 -0
- package/build/cjs/value/create/from-string.d.ts +2 -0
- package/build/cjs/value/create/from-string.js +12 -0
- package/build/cjs/value/create/from-symbol.d.ts +2 -0
- package/build/cjs/value/create/from-symbol.js +7 -0
- package/build/cjs/value/create/from-template-literal.d.ts +2 -0
- package/build/cjs/value/create/from-template-literal.js +14 -0
- package/build/cjs/value/create/from-tuple.d.ts +2 -0
- package/build/cjs/value/create/from-tuple.js +8 -0
- package/build/cjs/value/create/from-type.d.ts +2 -0
- package/build/cjs/value/create/from-type.js +72 -0
- package/build/cjs/value/create/from-undefined.d.ts +2 -0
- package/build/cjs/value/create/from-undefined.js +7 -0
- package/build/cjs/value/create/from-union.d.ts +2 -0
- package/build/cjs/value/create/from-union.js +12 -0
- package/build/cjs/value/create/from-void.d.ts +2 -0
- package/build/cjs/value/create/from-void.js +7 -0
- package/build/cjs/value/create/index.d.ts +2 -0
- package/build/cjs/value/create/index.js +18 -0
- package/build/cjs/value/default/default.d.ts +13 -0
- package/build/cjs/value/default/default.js +18 -0
- package/build/cjs/value/default/from-array.d.ts +2 -0
- package/build/cjs/value/default/from-array.js +15 -0
- package/build/cjs/value/default/from-base.d.ts +2 -0
- package/build/cjs/value/default/from-base.js +8 -0
- package/build/cjs/value/default/from-cyclic.d.ts +2 -0
- package/build/cjs/value/default/from-cyclic.js +10 -0
- package/build/cjs/value/default/from-default.d.ts +3 -0
- package/build/cjs/value/default/from-default.js +16 -0
- package/build/cjs/value/default/from-intersect.d.ts +2 -0
- package/build/cjs/value/default/from-intersect.js +11 -0
- package/build/cjs/value/default/from-object.d.ts +2 -0
- package/build/cjs/value/default/from-object.js +33 -0
- package/build/cjs/value/default/from-record.d.ts +2 -0
- package/build/cjs/value/default/from-record.js +29 -0
- package/build/cjs/value/default/from-ref.d.ts +2 -0
- package/build/cjs/value/default/from-ref.js +12 -0
- package/build/cjs/value/default/from-tuple.d.ts +2 -0
- package/build/cjs/value/default/from-tuple.js +17 -0
- package/build/cjs/value/default/from-type.d.ts +2 -0
- package/build/cjs/value/default/from-type.js +30 -0
- package/build/cjs/value/default/from-union.d.ts +2 -0
- package/build/cjs/value/default/from-union.js +17 -0
- package/build/cjs/value/default/index.d.ts +1 -0
- package/build/cjs/value/default/index.js +17 -0
- package/build/cjs/value/delta/diff.d.ts +10 -0
- package/build/cjs/value/delta/diff.js +132 -0
- package/build/cjs/value/delta/edit.d.ts +24 -0
- package/build/cjs/value/delta/edit.js +20 -0
- package/build/cjs/value/delta/index.d.ts +3 -0
- package/build/cjs/value/delta/index.js +19 -0
- package/build/cjs/value/delta/patch.d.ts +8 -0
- package/build/cjs/value/delta/patch.js +45 -0
- package/build/cjs/value/equal/equal.js +9 -0
- package/build/cjs/value/equal/index.d.ts +1 -0
- package/build/cjs/value/equal/index.js +17 -0
- package/build/cjs/value/errors/errors.d.ts +16 -0
- package/build/cjs/value/errors/errors.js +20 -0
- package/build/cjs/value/errors/index.d.ts +1 -0
- package/build/cjs/value/errors/index.js +17 -0
- package/build/cjs/value/hash/hash.js +13 -0
- package/build/cjs/value/hash/index.d.ts +1 -0
- package/build/cjs/value/hash/index.js +17 -0
- package/build/cjs/value/index.d.ts +20 -0
- package/build/cjs/value/index.js +43 -0
- package/build/cjs/value/mutate/error.js +10 -0
- package/build/cjs/value/mutate/from-array.d.ts +2 -0
- package/build/cjs/value/mutate/from-array.js +19 -0
- package/build/cjs/value/mutate/from-object.d.ts +2 -0
- package/build/cjs/value/mutate/from-object.js +30 -0
- package/build/cjs/value/mutate/from-unknown.d.ts +2 -0
- package/build/cjs/value/mutate/from-unknown.js +10 -0
- package/build/cjs/value/mutate/from-value.d.ts +2 -0
- package/build/cjs/value/mutate/from-value.js +15 -0
- package/build/cjs/value/mutate/index.d.ts +1 -0
- package/build/cjs/value/mutate/index.js +17 -0
- package/build/cjs/value/mutate/mutate.js +42 -0
- package/build/cjs/value/parse/index.d.ts +1 -0
- package/build/cjs/value/parse/index.js +17 -0
- package/build/cjs/value/parse/parse.d.ts +21 -0
- package/build/cjs/value/parse/parse.js +52 -0
- package/build/cjs/value/pipeline/index.d.ts +1 -0
- package/build/cjs/value/pipeline/index.js +17 -0
- package/build/cjs/value/pipeline/pipeline.d.ts +10 -0
- package/build/cjs/value/pipeline/pipeline.js +18 -0
- package/build/cjs/value/pointer/index.d.ts +1 -0
- package/build/cjs/value/pointer/index.js +4 -0
- package/build/cjs/value/pointer/pointer.js +144 -0
- package/build/cjs/value/repair/error.d.ts +7 -0
- package/build/cjs/value/repair/error.js +12 -0
- package/build/cjs/value/repair/from-array.d.ts +2 -0
- package/build/cjs/value/repair/from-array.js +42 -0
- package/build/cjs/value/repair/from-base.d.ts +2 -0
- package/build/cjs/value/repair/from-base.js +11 -0
- package/build/cjs/value/repair/from-enum.d.ts +2 -0
- package/build/cjs/value/repair/from-enum.js +10 -0
- package/build/cjs/value/repair/from-intersect.d.ts +2 -0
- package/build/cjs/value/repair/from-intersect.js +10 -0
- package/build/cjs/value/repair/from-object.d.ts +2 -0
- package/build/cjs/value/repair/from-object.js +36 -0
- package/build/cjs/value/repair/from-record.d.ts +2 -0
- package/build/cjs/value/repair/from-record.js +36 -0
- package/build/cjs/value/repair/from-ref.d.ts +2 -0
- package/build/cjs/value/repair/from-ref.js +12 -0
- package/build/cjs/value/repair/from-template-literal.d.ts +2 -0
- package/build/cjs/value/repair/from-template-literal.js +10 -0
- package/build/cjs/value/repair/from-tuple.d.ts +2 -0
- package/build/cjs/value/repair/from-tuple.js +15 -0
- package/build/cjs/value/repair/from-type.d.ts +2 -0
- package/build/cjs/value/repair/from-type.js +67 -0
- package/build/cjs/value/repair/from-union.d.ts +2 -0
- package/build/cjs/value/repair/from-union.js +74 -0
- package/build/cjs/value/repair/from-unknown.d.ts +2 -0
- package/build/cjs/value/repair/from-unknown.js +15 -0
- package/build/cjs/value/repair/index.d.ts +1 -0
- package/build/cjs/value/repair/index.js +17 -0
- package/build/cjs/value/repair/repair.d.ts +17 -0
- package/build/cjs/value/repair/repair.js +23 -0
- package/build/cjs/value/shared/index.d.ts +1 -0
- package/build/cjs/value/shared/index.js +18 -0
- package/build/cjs/value/shared/optional-undefined.d.ts +2 -0
- package/build/cjs/value/shared/optional-undefined.js +18 -0
- package/build/cjs/value/value.d.ts +16 -0
- package/build/cjs/value/value.js +38 -0
- package/build/esm/error/errors.d.mts +214 -0
- package/build/esm/format/_registry.d.mts +15 -0
- package/build/esm/format/date-time.d.mts +6 -0
- package/build/esm/format/date.d.mts +6 -0
- package/build/esm/format/duration.d.mts +5 -0
- package/build/esm/format/email.d.mts +2 -0
- package/build/esm/format/hostname.d.mts +2 -0
- package/build/esm/format/idn-email.d.mts +2 -0
- package/build/esm/format/idn-hostname.d.mts +5 -0
- package/build/esm/format/ipv4.d.mts +6 -0
- package/build/esm/format/ipv6.d.mts +6 -0
- package/build/esm/format/iri-reference.d.mts +5 -0
- package/build/esm/format/iri.d.mts +5 -0
- package/build/esm/format/json-pointer-uri-fragment.d.mts +6 -0
- package/build/esm/format/json-pointer.d.mts +6 -0
- package/build/esm/format/regex.d.mts +6 -0
- package/build/esm/format/relative-json-pointer.d.mts +6 -0
- package/build/esm/format/time.d.mts +5 -0
- package/build/esm/format/uri-reference.d.mts +6 -0
- package/build/esm/format/uri-template.d.mts +6 -0
- package/build/esm/format/uri.d.mts +6 -0
- package/build/esm/format/url.d.mts +6 -0
- package/build/esm/format/uuid.d.mts +6 -0
- package/build/esm/guard/emit.d.mts +57 -0
- package/build/esm/guard/globals.d.mts +35 -0
- package/build/esm/guard/guard.d.mts +59 -0
- package/build/esm/guard/native.d.mts +20 -0
- package/build/esm/schema/engine/_exact_optional.d.mts +3 -0
- package/build/esm/schema/engine/_externals.d.mts +9 -0
- package/build/esm/schema/types/schema.d.mts +9 -0
- package/build/esm/system/arguments/arguments.d.mts +5 -0
- package/build/esm/system/environment/can-evaluate.d.mts +2 -0
- package/build/esm/system/hashing/hash.d.mts +4 -0
- package/build/esm/system/memory/assign.d.mts +14 -0
- package/build/esm/system/memory/clone.d.mts +6 -0
- package/build/esm/system/memory/create.d.mts +8 -0
- package/build/esm/system/memory/discard.d.mts +4 -0
- package/build/esm/system/memory/metrics.d.mts +14 -0
- package/build/esm/system/memory/update.d.mts +7 -0
- package/build/esm/system/settings/settings.d.mts +47 -0
- package/build/esm/system/unreachable/unreachable.d.mts +3 -0
- package/build/esm/type/engine/helpers/union.d.mts +7 -0
- package/build/esm/type/engine/intrinsics/mapping.d.mts +9 -0
- package/build/esm/type/engine/object/from-intersect.d.mts +17 -0
- package/build/esm/type/engine/object/from-intersect.mjs +21 -0
- package/build/esm/type/engine/object/from-union.d.mts +12 -0
- package/build/esm/type/engine/object/from-union.mjs +26 -0
- package/build/esm/type/engine/template-literal/create.d.mts +1 -0
- package/build/esm/type/script/mapping.d.mts +358 -0
- package/build/esm/type/script/mapping.mjs +525 -0
- package/build/esm/type/script/parser.d.mts +256 -0
- package/build/esm/type/script/parser.mjs +132 -0
- package/build/esm/type/script/token/internal/char.d.mts +73 -0
- package/build/esm/type/script/token/internal/result.d.mts +2 -0
- package/build/esm/type/script/token/internal/take.d.mts +6 -0
- package/build/esm/type/script/token/until.d.mts +6 -0
- package/build/esm/type/types/object.d.mts +20 -0
- package/build/esm/type/types/object.mjs +29 -0
- package/build/esm/type/types/schema.d.mts +199 -0
- package/build/esm/value/clone/clone.d.mts +5 -0
- package/build/esm/value/convert/try/try-result.d.mts +8 -0
- package/build/esm/value/equal/equal.d.mts +2 -0
- package/build/esm/value/hash/hash.d.mts +6 -0
- package/build/esm/value/mutate/error.d.mts +3 -0
- package/build/esm/value/mutate/mutate.d.mts +9 -0
- package/build/esm/value/pointer/pointer.d.mts +17 -0
- package/compile/package.json +4 -0
- package/error/package.json +4 -0
- package/format/package.json +4 -0
- package/guard/package.json +4 -0
- package/package.json +68 -31
- package/schema/package.json +4 -0
- package/system/package.json +4 -0
- package/type/package.json +4 -0
- package/value/package.json +4 -0
- package/build/type/engine/object/from-intersect.d.mts +0 -14
- package/build/type/engine/object/from-intersect.mjs +0 -17
- package/build/type/engine/object/from-union.d.mts +0 -12
- package/build/type/engine/object/from-union.mjs +0 -26
- package/build/type/script/mapping.d.mts +0 -358
- package/build/type/script/mapping.mjs +0 -525
- package/build/type/script/parser.d.mts +0 -256
- package/build/type/script/parser.mjs +0 -132
- package/build/type/types/object.d.mts +0 -17
- package/build/type/types/object.mjs +0 -27
- /package/build/{error/errors.d.mts → cjs/error/errors.d.ts} +0 -0
- /package/build/{format/_registry.d.mts → cjs/format/_registry.d.ts} +0 -0
- /package/build/{format/date-time.d.mts → cjs/format/date-time.d.ts} +0 -0
- /package/build/{format/date.d.mts → cjs/format/date.d.ts} +0 -0
- /package/build/{format/duration.d.mts → cjs/format/duration.d.ts} +0 -0
- /package/build/{format/email.d.mts → cjs/format/email.d.ts} +0 -0
- /package/build/{format/hostname.d.mts → cjs/format/hostname.d.ts} +0 -0
- /package/build/{format/idn-email.d.mts → cjs/format/idn-email.d.ts} +0 -0
- /package/build/{format/idn-hostname.d.mts → cjs/format/idn-hostname.d.ts} +0 -0
- /package/build/{format/ipv4.d.mts → cjs/format/ipv4.d.ts} +0 -0
- /package/build/{format/ipv6.d.mts → cjs/format/ipv6.d.ts} +0 -0
- /package/build/{format/iri-reference.d.mts → cjs/format/iri-reference.d.ts} +0 -0
- /package/build/{format/iri.d.mts → cjs/format/iri.d.ts} +0 -0
- /package/build/{format/json-pointer-uri-fragment.d.mts → cjs/format/json-pointer-uri-fragment.d.ts} +0 -0
- /package/build/{format/json-pointer.d.mts → cjs/format/json-pointer.d.ts} +0 -0
- /package/build/{format/regex.d.mts → cjs/format/regex.d.ts} +0 -0
- /package/build/{format/relative-json-pointer.d.mts → cjs/format/relative-json-pointer.d.ts} +0 -0
- /package/build/{format/time.d.mts → cjs/format/time.d.ts} +0 -0
- /package/build/{format/uri-reference.d.mts → cjs/format/uri-reference.d.ts} +0 -0
- /package/build/{format/uri-template.d.mts → cjs/format/uri-template.d.ts} +0 -0
- /package/build/{format/uri.d.mts → cjs/format/uri.d.ts} +0 -0
- /package/build/{format/url.d.mts → cjs/format/url.d.ts} +0 -0
- /package/build/{format/uuid.d.mts → cjs/format/uuid.d.ts} +0 -0
- /package/build/{guard/emit.d.mts → cjs/guard/emit.d.ts} +0 -0
- /package/build/{guard/globals.d.mts → cjs/guard/globals.d.ts} +0 -0
- /package/build/{guard/guard.d.mts → cjs/guard/guard.d.ts} +0 -0
- /package/build/{guard/native.d.mts → cjs/guard/native.d.ts} +0 -0
- /package/build/{schema/engine/_exact_optional.d.mts → cjs/schema/engine/_exact_optional.d.ts} +0 -0
- /package/build/{schema/engine/_externals.d.mts → cjs/schema/engine/_externals.d.ts} +0 -0
- /package/build/{schema/types/schema.d.mts → cjs/schema/types/schema.d.ts} +0 -0
- /package/build/{system/arguments/arguments.d.mts → cjs/system/arguments/arguments.d.ts} +0 -0
- /package/build/{system/environment/can-evaluate.d.mts → cjs/system/environment/can-evaluate.d.ts} +0 -0
- /package/build/{system/hashing/hash.d.mts → cjs/system/hashing/hash.d.ts} +0 -0
- /package/build/{system/memory/assign.d.mts → cjs/system/memory/assign.d.ts} +0 -0
- /package/build/{system/memory/clone.d.mts → cjs/system/memory/clone.d.ts} +0 -0
- /package/build/{system/memory/create.d.mts → cjs/system/memory/create.d.ts} +0 -0
- /package/build/{system/memory/discard.d.mts → cjs/system/memory/discard.d.ts} +0 -0
- /package/build/{system/memory/metrics.d.mts → cjs/system/memory/metrics.d.ts} +0 -0
- /package/build/{system/memory/update.d.mts → cjs/system/memory/update.d.ts} +0 -0
- /package/build/{system/settings/settings.d.mts → cjs/system/settings/settings.d.ts} +0 -0
- /package/build/{system/unreachable/unreachable.d.mts → cjs/system/unreachable/unreachable.d.ts} +0 -0
- /package/build/{type/engine/helpers/union.d.mts → cjs/type/engine/helpers/union.d.ts} +0 -0
- /package/build/{type/engine/intrinsics/mapping.d.mts → cjs/type/engine/intrinsics/mapping.d.ts} +0 -0
- /package/build/{type/engine/template-literal/create.d.mts → cjs/type/engine/template-literal/create.d.ts} +0 -0
- /package/build/{type/script/token/internal/char.d.mts → cjs/type/script/token/internal/char.d.ts} +0 -0
- /package/build/{type/script/token/internal/result.d.mts → cjs/type/script/token/internal/result.d.ts} +0 -0
- /package/build/{type/script/token/internal/take.d.mts → cjs/type/script/token/internal/take.d.ts} +0 -0
- /package/build/{type/script/token/until.d.mts → cjs/type/script/token/until.d.ts} +0 -0
- /package/build/{type/types/schema.d.mts → cjs/type/types/schema.d.ts} +0 -0
- /package/build/{value/clone/clone.d.mts → cjs/value/clone/clone.d.ts} +0 -0
- /package/build/{value/convert/try/try-result.d.mts → cjs/value/convert/try/try-result.d.ts} +0 -0
- /package/build/{value/equal/equal.d.mts → cjs/value/equal/equal.d.ts} +0 -0
- /package/build/{value/hash/hash.d.mts → cjs/value/hash/hash.d.ts} +0 -0
- /package/build/{value/mutate/error.d.mts → cjs/value/mutate/error.d.ts} +0 -0
- /package/build/{value/mutate/mutate.d.mts → cjs/value/mutate/mutate.d.ts} +0 -0
- /package/build/{value/pointer/pointer.d.mts → cjs/value/pointer/pointer.d.ts} +0 -0
- /package/build/{compile → esm/compile}/code.d.mts +0 -0
- /package/build/{compile → esm/compile}/code.mjs +0 -0
- /package/build/{compile → esm/compile}/compile.d.mts +0 -0
- /package/build/{compile → esm/compile}/compile.mjs +0 -0
- /package/build/{compile → esm/compile}/index.d.mts +0 -0
- /package/build/{compile → esm/compile}/index.mjs +0 -0
- /package/build/{compile → esm/compile}/validator.d.mts +0 -0
- /package/build/{compile → esm/compile}/validator.mjs +0 -0
- /package/build/{error → esm/error}/errors.mjs +0 -0
- /package/build/{error → esm/error}/index.d.mts +0 -0
- /package/build/{error → esm/error}/index.mjs +0 -0
- /package/build/{format → esm/format}/_registry.mjs +0 -0
- /package/build/{format → esm/format}/date-time.mjs +0 -0
- /package/build/{format → esm/format}/date.mjs +0 -0
- /package/build/{format → esm/format}/duration.mjs +0 -0
- /package/build/{format → esm/format}/email.mjs +0 -0
- /package/build/{format → esm/format}/format.d.mts +0 -0
- /package/build/{format → esm/format}/format.mjs +0 -0
- /package/build/{format → esm/format}/hostname.mjs +0 -0
- /package/build/{format → esm/format}/idn-email.mjs +0 -0
- /package/build/{format → esm/format}/idn-hostname.mjs +0 -0
- /package/build/{format → esm/format}/index.d.mts +0 -0
- /package/build/{format → esm/format}/index.mjs +0 -0
- /package/build/{format → esm/format}/ipv4.mjs +0 -0
- /package/build/{format → esm/format}/ipv6.mjs +0 -0
- /package/build/{format → esm/format}/iri-reference.mjs +0 -0
- /package/build/{format → esm/format}/iri.mjs +0 -0
- /package/build/{format → esm/format}/json-pointer-uri-fragment.mjs +0 -0
- /package/build/{format → esm/format}/json-pointer.mjs +0 -0
- /package/build/{format → esm/format}/regex.mjs +0 -0
- /package/build/{format → esm/format}/relative-json-pointer.mjs +0 -0
- /package/build/{format → esm/format}/time.mjs +0 -0
- /package/build/{format → esm/format}/uri-reference.mjs +0 -0
- /package/build/{format → esm/format}/uri-template.mjs +0 -0
- /package/build/{format → esm/format}/uri.mjs +0 -0
- /package/build/{format → esm/format}/url.mjs +0 -0
- /package/build/{format → esm/format}/uuid.mjs +0 -0
- /package/build/{guard → esm/guard}/emit.mjs +0 -0
- /package/build/{guard → esm/guard}/globals.mjs +0 -0
- /package/build/{guard → esm/guard}/guard.mjs +0 -0
- /package/build/{guard → esm/guard}/index.d.mts +0 -0
- /package/build/{guard → esm/guard}/index.mjs +0 -0
- /package/build/{guard → esm/guard}/native.mjs +0 -0
- /package/build/{index.d.mts → esm/index.d.mts} +0 -0
- /package/build/{index.mjs → esm/index.mjs} +0 -0
- /package/build/{schema → esm/schema}/build.d.mts +0 -0
- /package/build/{schema → esm/schema}/build.mjs +0 -0
- /package/build/{schema → esm/schema}/check.d.mts +0 -0
- /package/build/{schema → esm/schema}/check.mjs +0 -0
- /package/build/{schema → esm/schema}/deref/deref.d.mts +0 -0
- /package/build/{schema → esm/schema}/deref/deref.mjs +0 -0
- /package/build/{schema → esm/schema}/deref/index.d.mts +0 -0
- /package/build/{schema → esm/schema}/deref/index.mjs +0 -0
- /package/build/{schema → esm/schema}/engine/_context.d.mts +0 -0
- /package/build/{schema → esm/schema}/engine/_context.mjs +0 -0
- /package/build/{schema → esm/schema}/engine/_exact_optional.mjs +0 -0
- /package/build/{schema → esm/schema}/engine/_externals.mjs +0 -0
- /package/build/{schema → esm/schema}/engine/_functions.d.mts +0 -0
- /package/build/{schema → esm/schema}/engine/_functions.mjs +0 -0
- /package/build/{schema → esm/schema}/engine/_guard.d.mts +0 -0
- /package/build/{schema → esm/schema}/engine/_guard.mjs +0 -0
- /package/build/{schema → esm/schema}/engine/_reducer.d.mts +0 -0
- /package/build/{schema → esm/schema}/engine/_reducer.mjs +0 -0
- /package/build/{schema → esm/schema}/engine/_refine.d.mts +0 -0
- /package/build/{schema → esm/schema}/engine/_refine.mjs +0 -0
- /package/build/{schema → esm/schema}/engine/additionalItems.d.mts +0 -0
- /package/build/{schema → esm/schema}/engine/additionalItems.mjs +0 -0
- /package/build/{schema → esm/schema}/engine/additionalProperties.d.mts +0 -0
- /package/build/{schema → esm/schema}/engine/additionalProperties.mjs +0 -0
- /package/build/{schema → esm/schema}/engine/allOf.d.mts +0 -0
- /package/build/{schema → esm/schema}/engine/allOf.mjs +0 -0
- /package/build/{schema → esm/schema}/engine/anyOf.d.mts +0 -0
- /package/build/{schema → esm/schema}/engine/anyOf.mjs +0 -0
- /package/build/{schema → esm/schema}/engine/boolean.d.mts +0 -0
- /package/build/{schema → esm/schema}/engine/boolean.mjs +0 -0
- /package/build/{schema → esm/schema}/engine/const.d.mts +0 -0
- /package/build/{schema → esm/schema}/engine/const.mjs +0 -0
- /package/build/{schema → esm/schema}/engine/contains.d.mts +0 -0
- /package/build/{schema → esm/schema}/engine/contains.mjs +0 -0
- /package/build/{schema → esm/schema}/engine/dependencies.d.mts +0 -0
- /package/build/{schema → esm/schema}/engine/dependencies.mjs +0 -0
- /package/build/{schema → esm/schema}/engine/dependentRequired.d.mts +0 -0
- /package/build/{schema → esm/schema}/engine/dependentRequired.mjs +0 -0
- /package/build/{schema → esm/schema}/engine/dependentSchemas.d.mts +0 -0
- /package/build/{schema → esm/schema}/engine/dependentSchemas.mjs +0 -0
- /package/build/{schema → esm/schema}/engine/enum.d.mts +0 -0
- /package/build/{schema → esm/schema}/engine/enum.mjs +0 -0
- /package/build/{schema → esm/schema}/engine/exclusiveMaximum.d.mts +0 -0
- /package/build/{schema → esm/schema}/engine/exclusiveMaximum.mjs +0 -0
- /package/build/{schema → esm/schema}/engine/exclusiveMinimum.d.mts +0 -0
- /package/build/{schema → esm/schema}/engine/exclusiveMinimum.mjs +0 -0
- /package/build/{schema → esm/schema}/engine/format.d.mts +0 -0
- /package/build/{schema → esm/schema}/engine/format.mjs +0 -0
- /package/build/{schema → esm/schema}/engine/if.d.mts +0 -0
- /package/build/{schema → esm/schema}/engine/if.mjs +0 -0
- /package/build/{schema → esm/schema}/engine/index.d.mts +0 -0
- /package/build/{schema → esm/schema}/engine/index.mjs +0 -0
- /package/build/{schema → esm/schema}/engine/items.d.mts +0 -0
- /package/build/{schema → esm/schema}/engine/items.mjs +0 -0
- /package/build/{schema → esm/schema}/engine/maxContains.d.mts +0 -0
- /package/build/{schema → esm/schema}/engine/maxContains.mjs +0 -0
- /package/build/{schema → esm/schema}/engine/maxItems.d.mts +0 -0
- /package/build/{schema → esm/schema}/engine/maxItems.mjs +0 -0
- /package/build/{schema → esm/schema}/engine/maxLength.d.mts +0 -0
- /package/build/{schema → esm/schema}/engine/maxLength.mjs +0 -0
- /package/build/{schema → esm/schema}/engine/maxProperties.d.mts +0 -0
- /package/build/{schema → esm/schema}/engine/maxProperties.mjs +0 -0
- /package/build/{schema → esm/schema}/engine/maximum.d.mts +0 -0
- /package/build/{schema → esm/schema}/engine/maximum.mjs +0 -0
- /package/build/{schema → esm/schema}/engine/minContains.d.mts +0 -0
- /package/build/{schema → esm/schema}/engine/minContains.mjs +0 -0
- /package/build/{schema → esm/schema}/engine/minItems.d.mts +0 -0
- /package/build/{schema → esm/schema}/engine/minItems.mjs +0 -0
- /package/build/{schema → esm/schema}/engine/minLength.d.mts +0 -0
- /package/build/{schema → esm/schema}/engine/minLength.mjs +0 -0
- /package/build/{schema → esm/schema}/engine/minProperties.d.mts +0 -0
- /package/build/{schema → esm/schema}/engine/minProperties.mjs +0 -0
- /package/build/{schema → esm/schema}/engine/minimum.d.mts +0 -0
- /package/build/{schema → esm/schema}/engine/minimum.mjs +0 -0
- /package/build/{schema → esm/schema}/engine/multipleOf.d.mts +0 -0
- /package/build/{schema → esm/schema}/engine/multipleOf.mjs +0 -0
- /package/build/{schema → esm/schema}/engine/not.d.mts +0 -0
- /package/build/{schema → esm/schema}/engine/not.mjs +0 -0
- /package/build/{schema → esm/schema}/engine/oneOf.d.mts +0 -0
- /package/build/{schema → esm/schema}/engine/oneOf.mjs +0 -0
- /package/build/{schema → esm/schema}/engine/pattern.d.mts +0 -0
- /package/build/{schema → esm/schema}/engine/pattern.mjs +0 -0
- /package/build/{schema → esm/schema}/engine/patternProperties.d.mts +0 -0
- /package/build/{schema → esm/schema}/engine/patternProperties.mjs +0 -0
- /package/build/{schema → esm/schema}/engine/prefixItems.d.mts +0 -0
- /package/build/{schema → esm/schema}/engine/prefixItems.mjs +0 -0
- /package/build/{schema → esm/schema}/engine/properties.d.mts +0 -0
- /package/build/{schema → esm/schema}/engine/properties.mjs +0 -0
- /package/build/{schema → esm/schema}/engine/propertyNames.d.mts +0 -0
- /package/build/{schema → esm/schema}/engine/propertyNames.mjs +0 -0
- /package/build/{schema → esm/schema}/engine/ref.d.mts +0 -0
- /package/build/{schema → esm/schema}/engine/ref.mjs +0 -0
- /package/build/{schema → esm/schema}/engine/required.d.mts +0 -0
- /package/build/{schema → esm/schema}/engine/required.mjs +0 -0
- /package/build/{schema → esm/schema}/engine/schema.d.mts +0 -0
- /package/build/{schema → esm/schema}/engine/schema.mjs +0 -0
- /package/build/{schema → esm/schema}/engine/type.d.mts +0 -0
- /package/build/{schema → esm/schema}/engine/type.mjs +0 -0
- /package/build/{schema → esm/schema}/engine/unevaluatedItems.d.mts +0 -0
- /package/build/{schema → esm/schema}/engine/unevaluatedItems.mjs +0 -0
- /package/build/{schema → esm/schema}/engine/unevaluatedProperties.d.mts +0 -0
- /package/build/{schema → esm/schema}/engine/unevaluatedProperties.mjs +0 -0
- /package/build/{schema → esm/schema}/engine/uniqueItems.d.mts +0 -0
- /package/build/{schema → esm/schema}/engine/uniqueItems.mjs +0 -0
- /package/build/{schema → esm/schema}/errors.d.mts +0 -0
- /package/build/{schema → esm/schema}/errors.mjs +0 -0
- /package/build/{schema → esm/schema}/index.d.mts +0 -0
- /package/build/{schema → esm/schema}/index.mjs +0 -0
- /package/build/{schema → esm/schema}/schema.d.mts +0 -0
- /package/build/{schema → esm/schema}/schema.mjs +0 -0
- /package/build/{schema → esm/schema}/types/_guard.d.mts +0 -0
- /package/build/{schema → esm/schema}/types/_guard.mjs +0 -0
- /package/build/{schema → esm/schema}/types/_refine.d.mts +0 -0
- /package/build/{schema → esm/schema}/types/_refine.mjs +0 -0
- /package/build/{schema → esm/schema}/types/additionalItems.d.mts +0 -0
- /package/build/{schema → esm/schema}/types/additionalItems.mjs +0 -0
- /package/build/{schema → esm/schema}/types/additionalProperties.d.mts +0 -0
- /package/build/{schema → esm/schema}/types/additionalProperties.mjs +0 -0
- /package/build/{schema → esm/schema}/types/allOf.d.mts +0 -0
- /package/build/{schema → esm/schema}/types/allOf.mjs +0 -0
- /package/build/{schema → esm/schema}/types/anyOf.d.mts +0 -0
- /package/build/{schema → esm/schema}/types/anyOf.mjs +0 -0
- /package/build/{schema → esm/schema}/types/const.d.mts +0 -0
- /package/build/{schema → esm/schema}/types/const.mjs +0 -0
- /package/build/{schema → esm/schema}/types/contains.d.mts +0 -0
- /package/build/{schema → esm/schema}/types/contains.mjs +0 -0
- /package/build/{schema → esm/schema}/types/contentEncoding.d.mts +0 -0
- /package/build/{schema → esm/schema}/types/contentEncoding.mjs +0 -0
- /package/build/{schema → esm/schema}/types/contentMediaType.d.mts +0 -0
- /package/build/{schema → esm/schema}/types/contentMediaType.mjs +0 -0
- /package/build/{schema → esm/schema}/types/default.d.mts +0 -0
- /package/build/{schema → esm/schema}/types/default.mjs +0 -0
- /package/build/{schema → esm/schema}/types/defs.d.mts +0 -0
- /package/build/{schema → esm/schema}/types/defs.mjs +0 -0
- /package/build/{schema → esm/schema}/types/dependencies.d.mts +0 -0
- /package/build/{schema → esm/schema}/types/dependencies.mjs +0 -0
- /package/build/{schema → esm/schema}/types/dependentRequired.d.mts +0 -0
- /package/build/{schema → esm/schema}/types/dependentRequired.mjs +0 -0
- /package/build/{schema → esm/schema}/types/dependentSchemas.d.mts +0 -0
- /package/build/{schema → esm/schema}/types/dependentSchemas.mjs +0 -0
- /package/build/{schema → esm/schema}/types/else.d.mts +0 -0
- /package/build/{schema → esm/schema}/types/else.mjs +0 -0
- /package/build/{schema → esm/schema}/types/enum.d.mts +0 -0
- /package/build/{schema → esm/schema}/types/enum.mjs +0 -0
- /package/build/{schema → esm/schema}/types/exclusiveMaximum.d.mts +0 -0
- /package/build/{schema → esm/schema}/types/exclusiveMaximum.mjs +0 -0
- /package/build/{schema → esm/schema}/types/exclusiveMinimum.d.mts +0 -0
- /package/build/{schema → esm/schema}/types/exclusiveMinimum.mjs +0 -0
- /package/build/{schema → esm/schema}/types/format.d.mts +0 -0
- /package/build/{schema → esm/schema}/types/format.mjs +0 -0
- /package/build/{schema → esm/schema}/types/id.d.mts +0 -0
- /package/build/{schema → esm/schema}/types/id.mjs +0 -0
- /package/build/{schema → esm/schema}/types/if.d.mts +0 -0
- /package/build/{schema → esm/schema}/types/if.mjs +0 -0
- /package/build/{schema → esm/schema}/types/index.d.mts +0 -0
- /package/build/{schema → esm/schema}/types/index.mjs +0 -0
- /package/build/{schema → esm/schema}/types/items.d.mts +0 -0
- /package/build/{schema → esm/schema}/types/items.mjs +0 -0
- /package/build/{schema → esm/schema}/types/maxContains.d.mts +0 -0
- /package/build/{schema → esm/schema}/types/maxContains.mjs +0 -0
- /package/build/{schema → esm/schema}/types/maxItems.d.mts +0 -0
- /package/build/{schema → esm/schema}/types/maxItems.mjs +0 -0
- /package/build/{schema → esm/schema}/types/maxLength.d.mts +0 -0
- /package/build/{schema → esm/schema}/types/maxLength.mjs +0 -0
- /package/build/{schema → esm/schema}/types/maxProperties.d.mts +0 -0
- /package/build/{schema → esm/schema}/types/maxProperties.mjs +0 -0
- /package/build/{schema → esm/schema}/types/maximum.d.mts +0 -0
- /package/build/{schema → esm/schema}/types/maximum.mjs +0 -0
- /package/build/{schema → esm/schema}/types/minContains.d.mts +0 -0
- /package/build/{schema → esm/schema}/types/minContains.mjs +0 -0
- /package/build/{schema → esm/schema}/types/minItems.d.mts +0 -0
- /package/build/{schema → esm/schema}/types/minItems.mjs +0 -0
- /package/build/{schema → esm/schema}/types/minLength.d.mts +0 -0
- /package/build/{schema → esm/schema}/types/minLength.mjs +0 -0
- /package/build/{schema → esm/schema}/types/minProperties.d.mts +0 -0
- /package/build/{schema → esm/schema}/types/minProperties.mjs +0 -0
- /package/build/{schema → esm/schema}/types/minimum.d.mts +0 -0
- /package/build/{schema → esm/schema}/types/minimum.mjs +0 -0
- /package/build/{schema → esm/schema}/types/multipleOf.d.mts +0 -0
- /package/build/{schema → esm/schema}/types/multipleOf.mjs +0 -0
- /package/build/{schema → esm/schema}/types/not.d.mts +0 -0
- /package/build/{schema → esm/schema}/types/not.mjs +0 -0
- /package/build/{schema → esm/schema}/types/oneOf.d.mts +0 -0
- /package/build/{schema → esm/schema}/types/oneOf.mjs +0 -0
- /package/build/{schema → esm/schema}/types/pattern.d.mts +0 -0
- /package/build/{schema → esm/schema}/types/pattern.mjs +0 -0
- /package/build/{schema → esm/schema}/types/patternProperties.d.mts +0 -0
- /package/build/{schema → esm/schema}/types/patternProperties.mjs +0 -0
- /package/build/{schema → esm/schema}/types/prefixItems.d.mts +0 -0
- /package/build/{schema → esm/schema}/types/prefixItems.mjs +0 -0
- /package/build/{schema → esm/schema}/types/properties.d.mts +0 -0
- /package/build/{schema → esm/schema}/types/properties.mjs +0 -0
- /package/build/{schema → esm/schema}/types/propertyNames.d.mts +0 -0
- /package/build/{schema → esm/schema}/types/propertyNames.mjs +0 -0
- /package/build/{schema → esm/schema}/types/ref.d.mts +0 -0
- /package/build/{schema → esm/schema}/types/ref.mjs +0 -0
- /package/build/{schema → esm/schema}/types/required.d.mts +0 -0
- /package/build/{schema → esm/schema}/types/required.mjs +0 -0
- /package/build/{schema → esm/schema}/types/schema.mjs +0 -0
- /package/build/{schema → esm/schema}/types/static.d.mts +0 -0
- /package/build/{schema → esm/schema}/types/static.mjs +0 -0
- /package/build/{schema → esm/schema}/types/then.d.mts +0 -0
- /package/build/{schema → esm/schema}/types/then.mjs +0 -0
- /package/build/{schema → esm/schema}/types/type.d.mts +0 -0
- /package/build/{schema → esm/schema}/types/type.mjs +0 -0
- /package/build/{schema → esm/schema}/types/unevaluatedItems.d.mts +0 -0
- /package/build/{schema → esm/schema}/types/unevaluatedItems.mjs +0 -0
- /package/build/{schema → esm/schema}/types/unevaluatedProperties.d.mts +0 -0
- /package/build/{schema → esm/schema}/types/unevaluatedProperties.mjs +0 -0
- /package/build/{schema → esm/schema}/types/uniqueItems.d.mts +0 -0
- /package/build/{schema → esm/schema}/types/uniqueItems.mjs +0 -0
- /package/build/{system → esm/system}/arguments/arguments.mjs +0 -0
- /package/build/{system → esm/system}/arguments/index.d.mts +0 -0
- /package/build/{system → esm/system}/arguments/index.mjs +0 -0
- /package/build/{system → esm/system}/environment/can-evaluate.mjs +0 -0
- /package/build/{system → esm/system}/environment/environment.d.mts +0 -0
- /package/build/{system → esm/system}/environment/environment.mjs +0 -0
- /package/build/{system → esm/system}/environment/index.d.mts +0 -0
- /package/build/{system → esm/system}/environment/index.mjs +0 -0
- /package/build/{system → esm/system}/hashing/hash.mjs +0 -0
- /package/build/{system → esm/system}/hashing/index.d.mts +0 -0
- /package/build/{system → esm/system}/hashing/index.mjs +0 -0
- /package/build/{system → esm/system}/index.d.mts +0 -0
- /package/build/{system → esm/system}/index.mjs +0 -0
- /package/build/{system → esm/system}/locale/_config.d.mts +0 -0
- /package/build/{system → esm/system}/locale/_config.mjs +0 -0
- /package/build/{system → esm/system}/locale/_locale.d.mts +0 -0
- /package/build/{system → esm/system}/locale/_locale.mjs +0 -0
- /package/build/{system → esm/system}/locale/ar_001.d.mts +0 -0
- /package/build/{system → esm/system}/locale/ar_001.mjs +0 -0
- /package/build/{system → esm/system}/locale/bn_BD.d.mts +0 -0
- /package/build/{system → esm/system}/locale/bn_BD.mjs +0 -0
- /package/build/{system → esm/system}/locale/cs_CZ.d.mts +0 -0
- /package/build/{system → esm/system}/locale/cs_CZ.mjs +0 -0
- /package/build/{system → esm/system}/locale/de_DE.d.mts +0 -0
- /package/build/{system → esm/system}/locale/de_DE.mjs +0 -0
- /package/build/{system → esm/system}/locale/el_GR.d.mts +0 -0
- /package/build/{system → esm/system}/locale/el_GR.mjs +0 -0
- /package/build/{system → esm/system}/locale/en_US.d.mts +0 -0
- /package/build/{system → esm/system}/locale/en_US.mjs +0 -0
- /package/build/{system → esm/system}/locale/es_419.d.mts +0 -0
- /package/build/{system → esm/system}/locale/es_419.mjs +0 -0
- /package/build/{system → esm/system}/locale/es_AR.d.mts +0 -0
- /package/build/{system → esm/system}/locale/es_AR.mjs +0 -0
- /package/build/{system → esm/system}/locale/es_ES.d.mts +0 -0
- /package/build/{system → esm/system}/locale/es_ES.mjs +0 -0
- /package/build/{system → esm/system}/locale/es_MX.d.mts +0 -0
- /package/build/{system → esm/system}/locale/es_MX.mjs +0 -0
- /package/build/{system → esm/system}/locale/fa_IR.d.mts +0 -0
- /package/build/{system → esm/system}/locale/fa_IR.mjs +0 -0
- /package/build/{system → esm/system}/locale/fil_PH.d.mts +0 -0
- /package/build/{system → esm/system}/locale/fil_PH.mjs +0 -0
- /package/build/{system → esm/system}/locale/fr_CA.d.mts +0 -0
- /package/build/{system → esm/system}/locale/fr_CA.mjs +0 -0
- /package/build/{system → esm/system}/locale/fr_FR.d.mts +0 -0
- /package/build/{system → esm/system}/locale/fr_FR.mjs +0 -0
- /package/build/{system → esm/system}/locale/ha_NG.d.mts +0 -0
- /package/build/{system → esm/system}/locale/ha_NG.mjs +0 -0
- /package/build/{system → esm/system}/locale/hi_IN.d.mts +0 -0
- /package/build/{system → esm/system}/locale/hi_IN.mjs +0 -0
- /package/build/{system → esm/system}/locale/hu_HU.d.mts +0 -0
- /package/build/{system → esm/system}/locale/hu_HU.mjs +0 -0
- /package/build/{system → esm/system}/locale/id_ID.d.mts +0 -0
- /package/build/{system → esm/system}/locale/id_ID.mjs +0 -0
- /package/build/{system → esm/system}/locale/index.d.mts +0 -0
- /package/build/{system → esm/system}/locale/index.mjs +0 -0
- /package/build/{system → esm/system}/locale/it_IT.d.mts +0 -0
- /package/build/{system → esm/system}/locale/it_IT.mjs +0 -0
- /package/build/{system → esm/system}/locale/ja_JP.d.mts +0 -0
- /package/build/{system → esm/system}/locale/ja_JP.mjs +0 -0
- /package/build/{system → esm/system}/locale/ko_KR.d.mts +0 -0
- /package/build/{system → esm/system}/locale/ko_KR.mjs +0 -0
- /package/build/{system → esm/system}/locale/ms_MY.d.mts +0 -0
- /package/build/{system → esm/system}/locale/ms_MY.mjs +0 -0
- /package/build/{system → esm/system}/locale/nl_NL.d.mts +0 -0
- /package/build/{system → esm/system}/locale/nl_NL.mjs +0 -0
- /package/build/{system → esm/system}/locale/pl_PL.d.mts +0 -0
- /package/build/{system → esm/system}/locale/pl_PL.mjs +0 -0
- /package/build/{system → esm/system}/locale/pt_BR.d.mts +0 -0
- /package/build/{system → esm/system}/locale/pt_BR.mjs +0 -0
- /package/build/{system → esm/system}/locale/pt_PT.d.mts +0 -0
- /package/build/{system → esm/system}/locale/pt_PT.mjs +0 -0
- /package/build/{system → esm/system}/locale/ro_RO.d.mts +0 -0
- /package/build/{system → esm/system}/locale/ro_RO.mjs +0 -0
- /package/build/{system → esm/system}/locale/ru_RU.d.mts +0 -0
- /package/build/{system → esm/system}/locale/ru_RU.mjs +0 -0
- /package/build/{system → esm/system}/locale/sv_SE.d.mts +0 -0
- /package/build/{system → esm/system}/locale/sv_SE.mjs +0 -0
- /package/build/{system → esm/system}/locale/sw_TZ.d.mts +0 -0
- /package/build/{system → esm/system}/locale/sw_TZ.mjs +0 -0
- /package/build/{system → esm/system}/locale/th_TH.d.mts +0 -0
- /package/build/{system → esm/system}/locale/th_TH.mjs +0 -0
- /package/build/{system → esm/system}/locale/tr_TR.d.mts +0 -0
- /package/build/{system → esm/system}/locale/tr_TR.mjs +0 -0
- /package/build/{system → esm/system}/locale/uk_UA.d.mts +0 -0
- /package/build/{system → esm/system}/locale/uk_UA.mjs +0 -0
- /package/build/{system → esm/system}/locale/ur_PK.d.mts +0 -0
- /package/build/{system → esm/system}/locale/ur_PK.mjs +0 -0
- /package/build/{system → esm/system}/locale/vi_VN.d.mts +0 -0
- /package/build/{system → esm/system}/locale/vi_VN.mjs +0 -0
- /package/build/{system → esm/system}/locale/yo_NG.d.mts +0 -0
- /package/build/{system → esm/system}/locale/yo_NG.mjs +0 -0
- /package/build/{system → esm/system}/locale/zh_Hans.d.mts +0 -0
- /package/build/{system → esm/system}/locale/zh_Hans.mjs +0 -0
- /package/build/{system → esm/system}/locale/zh_Hant.d.mts +0 -0
- /package/build/{system → esm/system}/locale/zh_Hant.mjs +0 -0
- /package/build/{system → esm/system}/memory/assign.mjs +0 -0
- /package/build/{system → esm/system}/memory/clone.mjs +0 -0
- /package/build/{system → esm/system}/memory/create.mjs +0 -0
- /package/build/{system → esm/system}/memory/discard.mjs +0 -0
- /package/build/{system → esm/system}/memory/index.d.mts +0 -0
- /package/build/{system → esm/system}/memory/index.mjs +0 -0
- /package/build/{system → esm/system}/memory/memory.d.mts +0 -0
- /package/build/{system → esm/system}/memory/memory.mjs +0 -0
- /package/build/{system → esm/system}/memory/metrics.mjs +0 -0
- /package/build/{system → esm/system}/memory/update.mjs +0 -0
- /package/build/{system → esm/system}/settings/index.d.mts +0 -0
- /package/build/{system → esm/system}/settings/index.mjs +0 -0
- /package/build/{system → esm/system}/settings/settings.mjs +0 -0
- /package/build/{system → esm/system}/system.d.mts +0 -0
- /package/build/{system → esm/system}/system.mjs +0 -0
- /package/build/{system → esm/system}/unreachable/index.d.mts +0 -0
- /package/build/{system → esm/system}/unreachable/index.mjs +0 -0
- /package/build/{system → esm/system}/unreachable/unreachable.mjs +0 -0
- /package/build/{type → esm/type}/action/_optional.d.mts +0 -0
- /package/build/{type → esm/type}/action/_optional.mjs +0 -0
- /package/build/{type → esm/type}/action/_readonly.d.mts +0 -0
- /package/build/{type → esm/type}/action/_readonly.mjs +0 -0
- /package/build/{type → esm/type}/action/awaited.d.mts +0 -0
- /package/build/{type → esm/type}/action/awaited.mjs +0 -0
- /package/build/{type → esm/type}/action/capitalize.d.mts +0 -0
- /package/build/{type → esm/type}/action/capitalize.mjs +0 -0
- /package/build/{type → esm/type}/action/conditional.d.mts +0 -0
- /package/build/{type → esm/type}/action/conditional.mjs +0 -0
- /package/build/{type → esm/type}/action/constructor-parameters.d.mts +0 -0
- /package/build/{type → esm/type}/action/constructor-parameters.mjs +0 -0
- /package/build/{type → esm/type}/action/evaluate.d.mts +0 -0
- /package/build/{type → esm/type}/action/evaluate.mjs +0 -0
- /package/build/{type → esm/type}/action/exclude.d.mts +0 -0
- /package/build/{type → esm/type}/action/exclude.mjs +0 -0
- /package/build/{type → esm/type}/action/extract.d.mts +0 -0
- /package/build/{type → esm/type}/action/extract.mjs +0 -0
- /package/build/{type → esm/type}/action/index.d.mts +0 -0
- /package/build/{type → esm/type}/action/index.mjs +0 -0
- /package/build/{type → esm/type}/action/indexed.d.mts +0 -0
- /package/build/{type → esm/type}/action/indexed.mjs +0 -0
- /package/build/{type → esm/type}/action/instance-type.d.mts +0 -0
- /package/build/{type → esm/type}/action/instance-type.mjs +0 -0
- /package/build/{type → esm/type}/action/interface.d.mts +0 -0
- /package/build/{type → esm/type}/action/interface.mjs +0 -0
- /package/build/{type → esm/type}/action/keyof.d.mts +0 -0
- /package/build/{type → esm/type}/action/keyof.mjs +0 -0
- /package/build/{type → esm/type}/action/lowercase.d.mts +0 -0
- /package/build/{type → esm/type}/action/lowercase.mjs +0 -0
- /package/build/{type → esm/type}/action/mapped.d.mts +0 -0
- /package/build/{type → esm/type}/action/mapped.mjs +0 -0
- /package/build/{type → esm/type}/action/module.d.mts +0 -0
- /package/build/{type → esm/type}/action/module.mjs +0 -0
- /package/build/{type → esm/type}/action/non-nullable.d.mts +0 -0
- /package/build/{type → esm/type}/action/non-nullable.mjs +0 -0
- /package/build/{type → esm/type}/action/omit.d.mts +0 -0
- /package/build/{type → esm/type}/action/omit.mjs +0 -0
- /package/build/{type → esm/type}/action/options.d.mts +0 -0
- /package/build/{type → esm/type}/action/options.mjs +0 -0
- /package/build/{type → esm/type}/action/parameters.d.mts +0 -0
- /package/build/{type → esm/type}/action/parameters.mjs +0 -0
- /package/build/{type → esm/type}/action/partial.d.mts +0 -0
- /package/build/{type → esm/type}/action/partial.mjs +0 -0
- /package/build/{type → esm/type}/action/pick.d.mts +0 -0
- /package/build/{type → esm/type}/action/pick.mjs +0 -0
- /package/build/{type → esm/type}/action/required.d.mts +0 -0
- /package/build/{type → esm/type}/action/required.mjs +0 -0
- /package/build/{type → esm/type}/action/return-type.d.mts +0 -0
- /package/build/{type → esm/type}/action/return-type.mjs +0 -0
- /package/build/{type → esm/type}/action/uncapitalize.d.mts +0 -0
- /package/build/{type → esm/type}/action/uncapitalize.mjs +0 -0
- /package/build/{type → esm/type}/action/uppercase.d.mts +0 -0
- /package/build/{type → esm/type}/action/uppercase.mjs +0 -0
- /package/build/{type → esm/type}/engine/awaited/index.d.mts +0 -0
- /package/build/{type → esm/type}/engine/awaited/index.mjs +0 -0
- /package/build/{type → esm/type}/engine/awaited/instantiate.d.mts +0 -0
- /package/build/{type → esm/type}/engine/awaited/instantiate.mjs +0 -0
- /package/build/{type → esm/type}/engine/call/instantiate.d.mts +0 -0
- /package/build/{type → esm/type}/engine/call/instantiate.mjs +0 -0
- /package/build/{type → esm/type}/engine/call/resolve-arguments.d.mts +0 -0
- /package/build/{type → esm/type}/engine/call/resolve-arguments.mjs +0 -0
- /package/build/{type → esm/type}/engine/call/resolve-target.d.mts +0 -0
- /package/build/{type → esm/type}/engine/call/resolve-target.mjs +0 -0
- /package/build/{type → esm/type}/engine/conditional/index.d.mts +0 -0
- /package/build/{type → esm/type}/engine/conditional/index.mjs +0 -0
- /package/build/{type → esm/type}/engine/conditional/instantiate.d.mts +0 -0
- /package/build/{type → esm/type}/engine/conditional/instantiate.mjs +0 -0
- /package/build/{type → esm/type}/engine/constructor-parameters/index.d.mts +0 -0
- /package/build/{type → esm/type}/engine/constructor-parameters/index.mjs +0 -0
- /package/build/{type → esm/type}/engine/constructor-parameters/instantiate.d.mts +0 -0
- /package/build/{type → esm/type}/engine/constructor-parameters/instantiate.mjs +0 -0
- /package/build/{type → esm/type}/engine/cyclic/candidates.d.mts +0 -0
- /package/build/{type → esm/type}/engine/cyclic/candidates.mjs +0 -0
- /package/build/{type → esm/type}/engine/cyclic/check.d.mts +0 -0
- /package/build/{type → esm/type}/engine/cyclic/check.mjs +0 -0
- /package/build/{type → esm/type}/engine/cyclic/dependencies.d.mts +0 -0
- /package/build/{type → esm/type}/engine/cyclic/dependencies.mjs +0 -0
- /package/build/{type → esm/type}/engine/cyclic/extends.d.mts +0 -0
- /package/build/{type → esm/type}/engine/cyclic/extends.mjs +0 -0
- /package/build/{type → esm/type}/engine/cyclic/index.d.mts +0 -0
- /package/build/{type → esm/type}/engine/cyclic/index.mjs +0 -0
- /package/build/{type → esm/type}/engine/cyclic/instantiate.d.mts +0 -0
- /package/build/{type → esm/type}/engine/cyclic/instantiate.mjs +0 -0
- /package/build/{type → esm/type}/engine/cyclic/target.d.mts +0 -0
- /package/build/{type → esm/type}/engine/cyclic/target.mjs +0 -0
- /package/build/{type → esm/type}/engine/enum/enum-to-union.d.mts +0 -0
- /package/build/{type → esm/type}/engine/enum/enum-to-union.mjs +0 -0
- /package/build/{type → esm/type}/engine/enum/index.d.mts +0 -0
- /package/build/{type → esm/type}/engine/enum/index.mjs +0 -0
- /package/build/{type → esm/type}/engine/enum/typescript-enum-to-enum-values.d.mts +0 -0
- /package/build/{type → esm/type}/engine/enum/typescript-enum-to-enum-values.mjs +0 -0
- /package/build/{type → esm/type}/engine/evaluate/broaden.d.mts +0 -0
- /package/build/{type → esm/type}/engine/evaluate/broaden.mjs +0 -0
- /package/build/{type → esm/type}/engine/evaluate/compare.d.mts +0 -0
- /package/build/{type → esm/type}/engine/evaluate/compare.mjs +0 -0
- /package/build/{type → esm/type}/engine/evaluate/composite.d.mts +0 -0
- /package/build/{type → esm/type}/engine/evaluate/composite.mjs +0 -0
- /package/build/{type → esm/type}/engine/evaluate/distribute.d.mts +0 -0
- /package/build/{type → esm/type}/engine/evaluate/distribute.mjs +0 -0
- /package/build/{type → esm/type}/engine/evaluate/evaluate.d.mts +0 -0
- /package/build/{type → esm/type}/engine/evaluate/evaluate.mjs +0 -0
- /package/build/{type → esm/type}/engine/evaluate/flatten.d.mts +0 -0
- /package/build/{type → esm/type}/engine/evaluate/flatten.mjs +0 -0
- /package/build/{type → esm/type}/engine/evaluate/index.d.mts +0 -0
- /package/build/{type → esm/type}/engine/evaluate/index.mjs +0 -0
- /package/build/{type → esm/type}/engine/evaluate/instantiate.d.mts +0 -0
- /package/build/{type → esm/type}/engine/evaluate/instantiate.mjs +0 -0
- /package/build/{type → esm/type}/engine/evaluate/narrow.d.mts +0 -0
- /package/build/{type → esm/type}/engine/evaluate/narrow.mjs +0 -0
- /package/build/{type → esm/type}/engine/exclude/index.d.mts +0 -0
- /package/build/{type → esm/type}/engine/exclude/index.mjs +0 -0
- /package/build/{type → esm/type}/engine/exclude/instantiate.d.mts +0 -0
- /package/build/{type → esm/type}/engine/exclude/instantiate.mjs +0 -0
- /package/build/{type → esm/type}/engine/extract/index.d.mts +0 -0
- /package/build/{type → esm/type}/engine/extract/index.mjs +0 -0
- /package/build/{type → esm/type}/engine/extract/instantiate.d.mts +0 -0
- /package/build/{type → esm/type}/engine/extract/instantiate.mjs +0 -0
- /package/build/{type → esm/type}/engine/helpers/index.d.mts +0 -0
- /package/build/{type → esm/type}/engine/helpers/index.mjs +0 -0
- /package/build/{type → esm/type}/engine/helpers/keys-to-indexer.d.mts +0 -0
- /package/build/{type → esm/type}/engine/helpers/keys-to-indexer.mjs +0 -0
- /package/build/{type → esm/type}/engine/helpers/keys.d.mts +0 -0
- /package/build/{type → esm/type}/engine/helpers/keys.mjs +0 -0
- /package/build/{type → esm/type}/engine/helpers/union.mjs +0 -0
- /package/build/{type → esm/type}/engine/index.d.mts +0 -0
- /package/build/{type → esm/type}/engine/index.mjs +0 -0
- /package/build/{type → esm/type}/engine/indexable/from-cyclic.d.mts +0 -0
- /package/build/{type → esm/type}/engine/indexable/from-cyclic.mjs +0 -0
- /package/build/{type → esm/type}/engine/indexable/from-enum.d.mts +0 -0
- /package/build/{type → esm/type}/engine/indexable/from-enum.mjs +0 -0
- /package/build/{type → esm/type}/engine/indexable/from-intersect.d.mts +0 -0
- /package/build/{type → esm/type}/engine/indexable/from-intersect.mjs +0 -0
- /package/build/{type → esm/type}/engine/indexable/from-literal.d.mts +0 -0
- /package/build/{type → esm/type}/engine/indexable/from-literal.mjs +0 -0
- /package/build/{type → esm/type}/engine/indexable/from-template-literal.d.mts +0 -0
- /package/build/{type → esm/type}/engine/indexable/from-template-literal.mjs +0 -0
- /package/build/{type → esm/type}/engine/indexable/from-type.d.mts +0 -0
- /package/build/{type → esm/type}/engine/indexable/from-type.mjs +0 -0
- /package/build/{type → esm/type}/engine/indexable/from-union.d.mts +0 -0
- /package/build/{type → esm/type}/engine/indexable/from-union.mjs +0 -0
- /package/build/{type → esm/type}/engine/indexable/to-indexable-keys.d.mts +0 -0
- /package/build/{type → esm/type}/engine/indexable/to-indexable-keys.mjs +0 -0
- /package/build/{type → esm/type}/engine/indexable/to-indexable.d.mts +0 -0
- /package/build/{type → esm/type}/engine/indexable/to-indexable.mjs +0 -0
- /package/build/{type → esm/type}/engine/indexed/array-indexer.d.mts +0 -0
- /package/build/{type → esm/type}/engine/indexed/array-indexer.mjs +0 -0
- /package/build/{type → esm/type}/engine/indexed/from-array.d.mts +0 -0
- /package/build/{type → esm/type}/engine/indexed/from-array.mjs +0 -0
- /package/build/{type → esm/type}/engine/indexed/from-object.d.mts +0 -0
- /package/build/{type → esm/type}/engine/indexed/from-object.mjs +0 -0
- /package/build/{type → esm/type}/engine/indexed/from-tuple.d.mts +0 -0
- /package/build/{type → esm/type}/engine/indexed/from-tuple.mjs +0 -0
- /package/build/{type → esm/type}/engine/indexed/index.d.mts +0 -0
- /package/build/{type → esm/type}/engine/indexed/index.mjs +0 -0
- /package/build/{type → esm/type}/engine/indexed/instantiate.d.mts +0 -0
- /package/build/{type → esm/type}/engine/indexed/instantiate.mjs +0 -0
- /package/build/{type → esm/type}/engine/instance-type/index.d.mts +0 -0
- /package/build/{type → esm/type}/engine/instance-type/index.mjs +0 -0
- /package/build/{type → esm/type}/engine/instance-type/instantiate.d.mts +0 -0
- /package/build/{type → esm/type}/engine/instance-type/instantiate.mjs +0 -0
- /package/build/{type → esm/type}/engine/instantiate.d.mts +0 -0
- /package/build/{type → esm/type}/engine/instantiate.mjs +0 -0
- /package/build/{type → esm/type}/engine/interface/index.d.mts +0 -0
- /package/build/{type → esm/type}/engine/interface/index.mjs +0 -0
- /package/build/{type → esm/type}/engine/interface/instantiate.d.mts +0 -0
- /package/build/{type → esm/type}/engine/interface/instantiate.mjs +0 -0
- /package/build/{type → esm/type}/engine/intrinsics/from-literal.d.mts +0 -0
- /package/build/{type → esm/type}/engine/intrinsics/from-literal.mjs +0 -0
- /package/build/{type → esm/type}/engine/intrinsics/from-template-literal.d.mts +0 -0
- /package/build/{type → esm/type}/engine/intrinsics/from-template-literal.mjs +0 -0
- /package/build/{type → esm/type}/engine/intrinsics/from-type.d.mts +0 -0
- /package/build/{type → esm/type}/engine/intrinsics/from-type.mjs +0 -0
- /package/build/{type → esm/type}/engine/intrinsics/from-union.d.mts +0 -0
- /package/build/{type → esm/type}/engine/intrinsics/from-union.mjs +0 -0
- /package/build/{type → esm/type}/engine/intrinsics/index.d.mts +0 -0
- /package/build/{type → esm/type}/engine/intrinsics/index.mjs +0 -0
- /package/build/{type → esm/type}/engine/intrinsics/instantiate.d.mts +0 -0
- /package/build/{type → esm/type}/engine/intrinsics/instantiate.mjs +0 -0
- /package/build/{type → esm/type}/engine/intrinsics/mapping.mjs +0 -0
- /package/build/{type → esm/type}/engine/keyof/from-array.d.mts +0 -0
- /package/build/{type → esm/type}/engine/keyof/from-array.mjs +0 -0
- /package/build/{type → esm/type}/engine/keyof/from-object.d.mts +0 -0
- /package/build/{type → esm/type}/engine/keyof/from-object.mjs +0 -0
- /package/build/{type → esm/type}/engine/keyof/from-record.d.mts +0 -0
- /package/build/{type → esm/type}/engine/keyof/from-record.mjs +0 -0
- /package/build/{type → esm/type}/engine/keyof/from-tuple.d.mts +0 -0
- /package/build/{type → esm/type}/engine/keyof/from-tuple.mjs +0 -0
- /package/build/{type → esm/type}/engine/keyof/index.d.mts +0 -0
- /package/build/{type → esm/type}/engine/keyof/index.mjs +0 -0
- /package/build/{type → esm/type}/engine/keyof/instantiate.d.mts +0 -0
- /package/build/{type → esm/type}/engine/keyof/instantiate.mjs +0 -0
- /package/build/{type → esm/type}/engine/mapped/index.d.mts +0 -0
- /package/build/{type → esm/type}/engine/mapped/index.mjs +0 -0
- /package/build/{type → esm/type}/engine/mapped/instantiate.d.mts +0 -0
- /package/build/{type → esm/type}/engine/mapped/instantiate.mjs +0 -0
- /package/build/{type → esm/type}/engine/mapped/mapped-keys.d.mts +0 -0
- /package/build/{type → esm/type}/engine/mapped/mapped-keys.mjs +0 -0
- /package/build/{type → esm/type}/engine/module/index.d.mts +0 -0
- /package/build/{type → esm/type}/engine/module/index.mjs +0 -0
- /package/build/{type → esm/type}/engine/module/instantiate.d.mts +0 -0
- /package/build/{type → esm/type}/engine/module/instantiate.mjs +0 -0
- /package/build/{type → esm/type}/engine/non-nullable/index.d.mts +0 -0
- /package/build/{type → esm/type}/engine/non-nullable/index.mjs +0 -0
- /package/build/{type → esm/type}/engine/non-nullable/instantiate.d.mts +0 -0
- /package/build/{type → esm/type}/engine/non-nullable/instantiate.mjs +0 -0
- /package/build/{type → esm/type}/engine/object/collapse.d.mts +0 -0
- /package/build/{type → esm/type}/engine/object/collapse.mjs +0 -0
- /package/build/{type → esm/type}/engine/object/from-cyclic.d.mts +0 -0
- /package/build/{type → esm/type}/engine/object/from-cyclic.mjs +0 -0
- /package/build/{type → esm/type}/engine/object/from-object.d.mts +0 -0
- /package/build/{type → esm/type}/engine/object/from-object.mjs +0 -0
- /package/build/{type → esm/type}/engine/object/from-tuple.d.mts +0 -0
- /package/build/{type → esm/type}/engine/object/from-tuple.mjs +0 -0
- /package/build/{type → esm/type}/engine/object/from-type.d.mts +0 -0
- /package/build/{type → esm/type}/engine/object/from-type.mjs +0 -0
- /package/build/{type → esm/type}/engine/object/index.d.mts +0 -0
- /package/build/{type → esm/type}/engine/object/index.mjs +0 -0
- /package/build/{type → esm/type}/engine/omit/index.d.mts +0 -0
- /package/build/{type → esm/type}/engine/omit/index.mjs +0 -0
- /package/build/{type → esm/type}/engine/omit/instantiate.d.mts +0 -0
- /package/build/{type → esm/type}/engine/omit/instantiate.mjs +0 -0
- /package/build/{type → esm/type}/engine/options/index.d.mts +0 -0
- /package/build/{type → esm/type}/engine/options/index.mjs +0 -0
- /package/build/{type → esm/type}/engine/options/instantiate.d.mts +0 -0
- /package/build/{type → esm/type}/engine/options/instantiate.mjs +0 -0
- /package/build/{type → esm/type}/engine/parameters/index.d.mts +0 -0
- /package/build/{type → esm/type}/engine/parameters/index.mjs +0 -0
- /package/build/{type → esm/type}/engine/parameters/instantiate.d.mts +0 -0
- /package/build/{type → esm/type}/engine/parameters/instantiate.mjs +0 -0
- /package/build/{type → esm/type}/engine/partial/from-cyclic.d.mts +0 -0
- /package/build/{type → esm/type}/engine/partial/from-cyclic.mjs +0 -0
- /package/build/{type → esm/type}/engine/partial/from-intersect.d.mts +0 -0
- /package/build/{type → esm/type}/engine/partial/from-intersect.mjs +0 -0
- /package/build/{type → esm/type}/engine/partial/from-object.d.mts +0 -0
- /package/build/{type → esm/type}/engine/partial/from-object.mjs +0 -0
- /package/build/{type → esm/type}/engine/partial/from-type.d.mts +0 -0
- /package/build/{type → esm/type}/engine/partial/from-type.mjs +0 -0
- /package/build/{type → esm/type}/engine/partial/from-union.d.mts +0 -0
- /package/build/{type → esm/type}/engine/partial/from-union.mjs +0 -0
- /package/build/{type → esm/type}/engine/partial/index.d.mts +0 -0
- /package/build/{type → esm/type}/engine/partial/index.mjs +0 -0
- /package/build/{type → esm/type}/engine/partial/instantiate.d.mts +0 -0
- /package/build/{type → esm/type}/engine/partial/instantiate.mjs +0 -0
- /package/build/{type → esm/type}/engine/patterns/index.d.mts +0 -0
- /package/build/{type → esm/type}/engine/patterns/index.mjs +0 -0
- /package/build/{type → esm/type}/engine/patterns/pattern.d.mts +0 -0
- /package/build/{type → esm/type}/engine/patterns/pattern.mjs +0 -0
- /package/build/{type → esm/type}/engine/patterns/template.d.mts +0 -0
- /package/build/{type → esm/type}/engine/patterns/template.mjs +0 -0
- /package/build/{type → esm/type}/engine/pick/index.d.mts +0 -0
- /package/build/{type → esm/type}/engine/pick/index.mjs +0 -0
- /package/build/{type → esm/type}/engine/pick/instantiate.d.mts +0 -0
- /package/build/{type → esm/type}/engine/pick/instantiate.mjs +0 -0
- /package/build/{type → esm/type}/engine/record/from-key-any.d.mts +0 -0
- /package/build/{type → esm/type}/engine/record/from-key-any.mjs +0 -0
- /package/build/{type → esm/type}/engine/record/from-key-boolean.d.mts +0 -0
- /package/build/{type → esm/type}/engine/record/from-key-boolean.mjs +0 -0
- /package/build/{type → esm/type}/engine/record/from-key-enum.d.mts +0 -0
- /package/build/{type → esm/type}/engine/record/from-key-enum.mjs +0 -0
- /package/build/{type → esm/type}/engine/record/from-key-integer.d.mts +0 -0
- /package/build/{type → esm/type}/engine/record/from-key-integer.mjs +0 -0
- /package/build/{type → esm/type}/engine/record/from-key-intersect.d.mts +0 -0
- /package/build/{type → esm/type}/engine/record/from-key-intersect.mjs +0 -0
- /package/build/{type → esm/type}/engine/record/from-key-literal.d.mts +0 -0
- /package/build/{type → esm/type}/engine/record/from-key-literal.mjs +0 -0
- /package/build/{type → esm/type}/engine/record/from-key-number.d.mts +0 -0
- /package/build/{type → esm/type}/engine/record/from-key-number.mjs +0 -0
- /package/build/{type → esm/type}/engine/record/from-key-string.d.mts +0 -0
- /package/build/{type → esm/type}/engine/record/from-key-string.mjs +0 -0
- /package/build/{type → esm/type}/engine/record/from-key-template-literal.d.mts +0 -0
- /package/build/{type → esm/type}/engine/record/from-key-template-literal.mjs +0 -0
- /package/build/{type → esm/type}/engine/record/from-key-union.d.mts +0 -0
- /package/build/{type → esm/type}/engine/record/from-key-union.mjs +0 -0
- /package/build/{type → esm/type}/engine/record/from-key.d.mts +0 -0
- /package/build/{type → esm/type}/engine/record/from-key.mjs +0 -0
- /package/build/{type → esm/type}/engine/record/index.d.mts +0 -0
- /package/build/{type → esm/type}/engine/record/index.mjs +0 -0
- /package/build/{type → esm/type}/engine/record/instantiate.d.mts +0 -0
- /package/build/{type → esm/type}/engine/record/instantiate.mjs +0 -0
- /package/build/{type → esm/type}/engine/record/record-create.d.mts +0 -0
- /package/build/{type → esm/type}/engine/record/record-create.mjs +0 -0
- /package/build/{type → esm/type}/engine/ref/index.d.mts +0 -0
- /package/build/{type → esm/type}/engine/ref/index.mjs +0 -0
- /package/build/{type → esm/type}/engine/ref/instantiate.d.mts +0 -0
- /package/build/{type → esm/type}/engine/ref/instantiate.mjs +0 -0
- /package/build/{type → esm/type}/engine/required/from-cyclic.d.mts +0 -0
- /package/build/{type → esm/type}/engine/required/from-cyclic.mjs +0 -0
- /package/build/{type → esm/type}/engine/required/from-intersect.d.mts +0 -0
- /package/build/{type → esm/type}/engine/required/from-intersect.mjs +0 -0
- /package/build/{type → esm/type}/engine/required/from-object.d.mts +0 -0
- /package/build/{type → esm/type}/engine/required/from-object.mjs +0 -0
- /package/build/{type → esm/type}/engine/required/from-type.d.mts +0 -0
- /package/build/{type → esm/type}/engine/required/from-type.mjs +0 -0
- /package/build/{type → esm/type}/engine/required/from-union.d.mts +0 -0
- /package/build/{type → esm/type}/engine/required/from-union.mjs +0 -0
- /package/build/{type → esm/type}/engine/required/index.d.mts +0 -0
- /package/build/{type → esm/type}/engine/required/index.mjs +0 -0
- /package/build/{type → esm/type}/engine/required/instantiate.d.mts +0 -0
- /package/build/{type → esm/type}/engine/required/instantiate.mjs +0 -0
- /package/build/{type → esm/type}/engine/rest/index.d.mts +0 -0
- /package/build/{type → esm/type}/engine/rest/index.mjs +0 -0
- /package/build/{type → esm/type}/engine/rest/spread.d.mts +0 -0
- /package/build/{type → esm/type}/engine/rest/spread.mjs +0 -0
- /package/build/{type → esm/type}/engine/return-type/index.d.mts +0 -0
- /package/build/{type → esm/type}/engine/return-type/index.mjs +0 -0
- /package/build/{type → esm/type}/engine/return-type/instantiate.d.mts +0 -0
- /package/build/{type → esm/type}/engine/return-type/instantiate.mjs +0 -0
- /package/build/{type → esm/type}/engine/template-literal/create.mjs +0 -0
- /package/build/{type → esm/type}/engine/template-literal/decode.d.mts +0 -0
- /package/build/{type → esm/type}/engine/template-literal/decode.mjs +0 -0
- /package/build/{type → esm/type}/engine/template-literal/encode.d.mts +0 -0
- /package/build/{type → esm/type}/engine/template-literal/encode.mjs +0 -0
- /package/build/{type → esm/type}/engine/template-literal/finite.d.mts +0 -0
- /package/build/{type → esm/type}/engine/template-literal/finite.mjs +0 -0
- /package/build/{type → esm/type}/engine/template-literal/index.d.mts +0 -0
- /package/build/{type → esm/type}/engine/template-literal/index.mjs +0 -0
- /package/build/{type → esm/type}/engine/template-literal/instantiate.d.mts +0 -0
- /package/build/{type → esm/type}/engine/template-literal/instantiate.mjs +0 -0
- /package/build/{type → esm/type}/engine/template-literal/static.d.mts +0 -0
- /package/build/{type → esm/type}/engine/template-literal/static.mjs +0 -0
- /package/build/{type → esm/type}/engine/tuple/to-object.d.mts +0 -0
- /package/build/{type → esm/type}/engine/tuple/to-object.mjs +0 -0
- /package/build/{type → esm/type}/extends/any.d.mts +0 -0
- /package/build/{type → esm/type}/extends/any.mjs +0 -0
- /package/build/{type → esm/type}/extends/array.d.mts +0 -0
- /package/build/{type → esm/type}/extends/array.mjs +0 -0
- /package/build/{type → esm/type}/extends/async-iterator.d.mts +0 -0
- /package/build/{type → esm/type}/extends/async-iterator.mjs +0 -0
- /package/build/{type → esm/type}/extends/bigint.d.mts +0 -0
- /package/build/{type → esm/type}/extends/bigint.mjs +0 -0
- /package/build/{type → esm/type}/extends/boolean.d.mts +0 -0
- /package/build/{type → esm/type}/extends/boolean.mjs +0 -0
- /package/build/{type → esm/type}/extends/constructor.d.mts +0 -0
- /package/build/{type → esm/type}/extends/constructor.mjs +0 -0
- /package/build/{type → esm/type}/extends/enum.d.mts +0 -0
- /package/build/{type → esm/type}/extends/enum.mjs +0 -0
- /package/build/{type → esm/type}/extends/extends-left.d.mts +0 -0
- /package/build/{type → esm/type}/extends/extends-left.mjs +0 -0
- /package/build/{type → esm/type}/extends/extends-right.d.mts +0 -0
- /package/build/{type → esm/type}/extends/extends-right.mjs +0 -0
- /package/build/{type → esm/type}/extends/extends.d.mts +0 -0
- /package/build/{type → esm/type}/extends/extends.mjs +0 -0
- /package/build/{type → esm/type}/extends/function.d.mts +0 -0
- /package/build/{type → esm/type}/extends/function.mjs +0 -0
- /package/build/{type → esm/type}/extends/index.d.mts +0 -0
- /package/build/{type → esm/type}/extends/index.mjs +0 -0
- /package/build/{type → esm/type}/extends/inference.d.mts +0 -0
- /package/build/{type → esm/type}/extends/inference.mjs +0 -0
- /package/build/{type → esm/type}/extends/integer.d.mts +0 -0
- /package/build/{type → esm/type}/extends/integer.mjs +0 -0
- /package/build/{type → esm/type}/extends/intersect.d.mts +0 -0
- /package/build/{type → esm/type}/extends/intersect.mjs +0 -0
- /package/build/{type → esm/type}/extends/iterator.d.mts +0 -0
- /package/build/{type → esm/type}/extends/iterator.mjs +0 -0
- /package/build/{type → esm/type}/extends/literal.d.mts +0 -0
- /package/build/{type → esm/type}/extends/literal.mjs +0 -0
- /package/build/{type → esm/type}/extends/never.d.mts +0 -0
- /package/build/{type → esm/type}/extends/never.mjs +0 -0
- /package/build/{type → esm/type}/extends/null.d.mts +0 -0
- /package/build/{type → esm/type}/extends/null.mjs +0 -0
- /package/build/{type → esm/type}/extends/number.d.mts +0 -0
- /package/build/{type → esm/type}/extends/number.mjs +0 -0
- /package/build/{type → esm/type}/extends/object.d.mts +0 -0
- /package/build/{type → esm/type}/extends/object.mjs +0 -0
- /package/build/{type → esm/type}/extends/parameters.d.mts +0 -0
- /package/build/{type → esm/type}/extends/parameters.mjs +0 -0
- /package/build/{type → esm/type}/extends/promise.d.mts +0 -0
- /package/build/{type → esm/type}/extends/promise.mjs +0 -0
- /package/build/{type → esm/type}/extends/result.d.mts +0 -0
- /package/build/{type → esm/type}/extends/result.mjs +0 -0
- /package/build/{type → esm/type}/extends/return-type.d.mts +0 -0
- /package/build/{type → esm/type}/extends/return-type.mjs +0 -0
- /package/build/{type → esm/type}/extends/string.d.mts +0 -0
- /package/build/{type → esm/type}/extends/string.mjs +0 -0
- /package/build/{type → esm/type}/extends/symbol.d.mts +0 -0
- /package/build/{type → esm/type}/extends/symbol.mjs +0 -0
- /package/build/{type → esm/type}/extends/template-literal.d.mts +0 -0
- /package/build/{type → esm/type}/extends/template-literal.mjs +0 -0
- /package/build/{type → esm/type}/extends/tuple.d.mts +0 -0
- /package/build/{type → esm/type}/extends/tuple.mjs +0 -0
- /package/build/{type → esm/type}/extends/undefined.d.mts +0 -0
- /package/build/{type → esm/type}/extends/undefined.mjs +0 -0
- /package/build/{type → esm/type}/extends/union.d.mts +0 -0
- /package/build/{type → esm/type}/extends/union.mjs +0 -0
- /package/build/{type → esm/type}/extends/unknown.d.mts +0 -0
- /package/build/{type → esm/type}/extends/unknown.mjs +0 -0
- /package/build/{type → esm/type}/extends/void.d.mts +0 -0
- /package/build/{type → esm/type}/extends/void.mjs +0 -0
- /package/build/{type → esm/type}/index.d.mts +0 -0
- /package/build/{type → esm/type}/index.mjs +0 -0
- /package/build/{type → esm/type}/script/index.d.mts +0 -0
- /package/build/{type → esm/type}/script/index.mjs +0 -0
- /package/build/{type → esm/type}/script/script.d.mts +0 -0
- /package/build/{type → esm/type}/script/script.mjs +0 -0
- /package/build/{type → esm/type}/script/token/bigint.d.mts +0 -0
- /package/build/{type → esm/type}/script/token/bigint.mjs +0 -0
- /package/build/{type → esm/type}/script/token/const.d.mts +0 -0
- /package/build/{type → esm/type}/script/token/const.mjs +0 -0
- /package/build/{type → esm/type}/script/token/ident.d.mts +0 -0
- /package/build/{type → esm/type}/script/token/ident.mjs +0 -0
- /package/build/{type → esm/type}/script/token/index.d.mts +0 -0
- /package/build/{type → esm/type}/script/token/index.mjs +0 -0
- /package/build/{type → esm/type}/script/token/integer.d.mts +0 -0
- /package/build/{type → esm/type}/script/token/integer.mjs +0 -0
- /package/build/{type → esm/type}/script/token/internal/char.mjs +0 -0
- /package/build/{type → esm/type}/script/token/internal/guard.d.mts +0 -0
- /package/build/{type → esm/type}/script/token/internal/guard.mjs +0 -0
- /package/build/{type → esm/type}/script/token/internal/many.d.mts +0 -0
- /package/build/{type → esm/type}/script/token/internal/many.mjs +0 -0
- /package/build/{type → esm/type}/script/token/internal/optional.d.mts +0 -0
- /package/build/{type → esm/type}/script/token/internal/optional.mjs +0 -0
- /package/build/{type → esm/type}/script/token/internal/result.mjs +0 -0
- /package/build/{type → esm/type}/script/token/internal/take.mjs +0 -0
- /package/build/{type → esm/type}/script/token/internal/trim.d.mts +0 -0
- /package/build/{type → esm/type}/script/token/internal/trim.mjs +0 -0
- /package/build/{type → esm/type}/script/token/number.d.mts +0 -0
- /package/build/{type → esm/type}/script/token/number.mjs +0 -0
- /package/build/{type → esm/type}/script/token/span.d.mts +0 -0
- /package/build/{type → esm/type}/script/token/span.mjs +0 -0
- /package/build/{type → esm/type}/script/token/string.d.mts +0 -0
- /package/build/{type → esm/type}/script/token/string.mjs +0 -0
- /package/build/{type → esm/type}/script/token/until.mjs +0 -0
- /package/build/{type → esm/type}/script/token/until_1.d.mts +0 -0
- /package/build/{type → esm/type}/script/token/until_1.mjs +0 -0
- /package/build/{type → esm/type}/types/_codec.d.mts +0 -0
- /package/build/{type → esm/type}/types/_codec.mjs +0 -0
- /package/build/{type → esm/type}/types/_optional.d.mts +0 -0
- /package/build/{type → esm/type}/types/_optional.mjs +0 -0
- /package/build/{type → esm/type}/types/_readonly.d.mts +0 -0
- /package/build/{type → esm/type}/types/_readonly.mjs +0 -0
- /package/build/{type → esm/type}/types/_refine.d.mts +0 -0
- /package/build/{type → esm/type}/types/_refine.mjs +0 -0
- /package/build/{type → esm/type}/types/any.d.mts +0 -0
- /package/build/{type → esm/type}/types/any.mjs +0 -0
- /package/build/{type → esm/type}/types/array.d.mts +0 -0
- /package/build/{type → esm/type}/types/array.mjs +0 -0
- /package/build/{type → esm/type}/types/async-iterator.d.mts +0 -0
- /package/build/{type → esm/type}/types/async-iterator.mjs +0 -0
- /package/build/{type → esm/type}/types/base.d.mts +0 -0
- /package/build/{type → esm/type}/types/base.mjs +0 -0
- /package/build/{type → esm/type}/types/bigint.d.mts +0 -0
- /package/build/{type → esm/type}/types/bigint.mjs +0 -0
- /package/build/{type → esm/type}/types/boolean.d.mts +0 -0
- /package/build/{type → esm/type}/types/boolean.mjs +0 -0
- /package/build/{type → esm/type}/types/call.d.mts +0 -0
- /package/build/{type → esm/type}/types/call.mjs +0 -0
- /package/build/{type → esm/type}/types/constructor.d.mts +0 -0
- /package/build/{type → esm/type}/types/constructor.mjs +0 -0
- /package/build/{type → esm/type}/types/cyclic.d.mts +0 -0
- /package/build/{type → esm/type}/types/cyclic.mjs +0 -0
- /package/build/{type → esm/type}/types/deferred.d.mts +0 -0
- /package/build/{type → esm/type}/types/deferred.mjs +0 -0
- /package/build/{type → esm/type}/types/enum.d.mts +0 -0
- /package/build/{type → esm/type}/types/enum.mjs +0 -0
- /package/build/{type → esm/type}/types/function.d.mts +0 -0
- /package/build/{type → esm/type}/types/function.mjs +0 -0
- /package/build/{type → esm/type}/types/generic.d.mts +0 -0
- /package/build/{type → esm/type}/types/generic.mjs +0 -0
- /package/build/{type → esm/type}/types/identifier.d.mts +0 -0
- /package/build/{type → esm/type}/types/identifier.mjs +0 -0
- /package/build/{type → esm/type}/types/index.d.mts +0 -0
- /package/build/{type → esm/type}/types/index.mjs +0 -0
- /package/build/{type → esm/type}/types/infer.d.mts +0 -0
- /package/build/{type → esm/type}/types/infer.mjs +0 -0
- /package/build/{type → esm/type}/types/integer.d.mts +0 -0
- /package/build/{type → esm/type}/types/integer.mjs +0 -0
- /package/build/{type → esm/type}/types/intersect.d.mts +0 -0
- /package/build/{type → esm/type}/types/intersect.mjs +0 -0
- /package/build/{type → esm/type}/types/iterator.d.mts +0 -0
- /package/build/{type → esm/type}/types/iterator.mjs +0 -0
- /package/build/{type → esm/type}/types/literal.d.mts +0 -0
- /package/build/{type → esm/type}/types/literal.mjs +0 -0
- /package/build/{type → esm/type}/types/never.d.mts +0 -0
- /package/build/{type → esm/type}/types/never.mjs +0 -0
- /package/build/{type → esm/type}/types/null.d.mts +0 -0
- /package/build/{type → esm/type}/types/null.mjs +0 -0
- /package/build/{type → esm/type}/types/number.d.mts +0 -0
- /package/build/{type → esm/type}/types/number.mjs +0 -0
- /package/build/{type → esm/type}/types/parameter.d.mts +0 -0
- /package/build/{type → esm/type}/types/parameter.mjs +0 -0
- /package/build/{type → esm/type}/types/promise.d.mts +0 -0
- /package/build/{type → esm/type}/types/promise.mjs +0 -0
- /package/build/{type → esm/type}/types/properties.d.mts +0 -0
- /package/build/{type → esm/type}/types/properties.mjs +0 -0
- /package/build/{type → esm/type}/types/record.d.mts +0 -0
- /package/build/{type → esm/type}/types/record.mjs +0 -0
- /package/build/{type → esm/type}/types/ref.d.mts +0 -0
- /package/build/{type → esm/type}/types/ref.mjs +0 -0
- /package/build/{type → esm/type}/types/rest.d.mts +0 -0
- /package/build/{type → esm/type}/types/rest.mjs +0 -0
- /package/build/{type → esm/type}/types/schema.mjs +0 -0
- /package/build/{type → esm/type}/types/static.d.mts +0 -0
- /package/build/{type → esm/type}/types/static.mjs +0 -0
- /package/build/{type → esm/type}/types/string.d.mts +0 -0
- /package/build/{type → esm/type}/types/string.mjs +0 -0
- /package/build/{type → esm/type}/types/symbol.d.mts +0 -0
- /package/build/{type → esm/type}/types/symbol.mjs +0 -0
- /package/build/{type → esm/type}/types/template-literal.d.mts +0 -0
- /package/build/{type → esm/type}/types/template-literal.mjs +0 -0
- /package/build/{type → esm/type}/types/this.d.mts +0 -0
- /package/build/{type → esm/type}/types/this.mjs +0 -0
- /package/build/{type → esm/type}/types/tuple.d.mts +0 -0
- /package/build/{type → esm/type}/types/tuple.mjs +0 -0
- /package/build/{type → esm/type}/types/undefined.d.mts +0 -0
- /package/build/{type → esm/type}/types/undefined.mjs +0 -0
- /package/build/{type → esm/type}/types/union.d.mts +0 -0
- /package/build/{type → esm/type}/types/union.mjs +0 -0
- /package/build/{type → esm/type}/types/unknown.d.mts +0 -0
- /package/build/{type → esm/type}/types/unknown.mjs +0 -0
- /package/build/{type → esm/type}/types/unsafe.d.mts +0 -0
- /package/build/{type → esm/type}/types/unsafe.mjs +0 -0
- /package/build/{type → esm/type}/types/void.d.mts +0 -0
- /package/build/{type → esm/type}/types/void.mjs +0 -0
- /package/build/{typebox.d.mts → esm/typebox.d.mts} +0 -0
- /package/build/{typebox.mjs → esm/typebox.mjs} +0 -0
- /package/build/{value → esm/value}/assert/assert.d.mts +0 -0
- /package/build/{value → esm/value}/assert/assert.mjs +0 -0
- /package/build/{value → esm/value}/assert/index.d.mts +0 -0
- /package/build/{value → esm/value}/assert/index.mjs +0 -0
- /package/build/{value → esm/value}/check/check.d.mts +0 -0
- /package/build/{value → esm/value}/check/check.mjs +0 -0
- /package/build/{value → esm/value}/check/index.d.mts +0 -0
- /package/build/{value → esm/value}/check/index.mjs +0 -0
- /package/build/{value → esm/value}/clean/additional.d.mts +0 -0
- /package/build/{value → esm/value}/clean/additional.mjs +0 -0
- /package/build/{value → esm/value}/clean/clean.d.mts +0 -0
- /package/build/{value → esm/value}/clean/clean.mjs +0 -0
- /package/build/{value → esm/value}/clean/from-array.d.mts +0 -0
- /package/build/{value → esm/value}/clean/from-array.mjs +0 -0
- /package/build/{value → esm/value}/clean/from-base.d.mts +0 -0
- /package/build/{value → esm/value}/clean/from-base.mjs +0 -0
- /package/build/{value → esm/value}/clean/from-cyclic.d.mts +0 -0
- /package/build/{value → esm/value}/clean/from-cyclic.mjs +0 -0
- /package/build/{value → esm/value}/clean/from-intersect.d.mts +0 -0
- /package/build/{value → esm/value}/clean/from-intersect.mjs +0 -0
- /package/build/{value → esm/value}/clean/from-object.d.mts +0 -0
- /package/build/{value → esm/value}/clean/from-object.mjs +0 -0
- /package/build/{value → esm/value}/clean/from-record.d.mts +0 -0
- /package/build/{value → esm/value}/clean/from-record.mjs +0 -0
- /package/build/{value → esm/value}/clean/from-ref.d.mts +0 -0
- /package/build/{value → esm/value}/clean/from-ref.mjs +0 -0
- /package/build/{value → esm/value}/clean/from-tuple.d.mts +0 -0
- /package/build/{value → esm/value}/clean/from-tuple.mjs +0 -0
- /package/build/{value → esm/value}/clean/from-type.d.mts +0 -0
- /package/build/{value → esm/value}/clean/from-type.mjs +0 -0
- /package/build/{value → esm/value}/clean/from-union.d.mts +0 -0
- /package/build/{value → esm/value}/clean/from-union.mjs +0 -0
- /package/build/{value → esm/value}/clean/index.d.mts +0 -0
- /package/build/{value → esm/value}/clean/index.mjs +0 -0
- /package/build/{value → esm/value}/clone/clone.mjs +0 -0
- /package/build/{value → esm/value}/clone/index.d.mts +0 -0
- /package/build/{value → esm/value}/clone/index.mjs +0 -0
- /package/build/{value → esm/value}/codec/callback.d.mts +0 -0
- /package/build/{value → esm/value}/codec/callback.mjs +0 -0
- /package/build/{value → esm/value}/codec/decode.d.mts +0 -0
- /package/build/{value → esm/value}/codec/decode.mjs +0 -0
- /package/build/{value → esm/value}/codec/encode.d.mts +0 -0
- /package/build/{value → esm/value}/codec/encode.mjs +0 -0
- /package/build/{value → esm/value}/codec/from-array.d.mts +0 -0
- /package/build/{value → esm/value}/codec/from-array.mjs +0 -0
- /package/build/{value → esm/value}/codec/from-cyclic.d.mts +0 -0
- /package/build/{value → esm/value}/codec/from-cyclic.mjs +0 -0
- /package/build/{value → esm/value}/codec/from-intersect.d.mts +0 -0
- /package/build/{value → esm/value}/codec/from-intersect.mjs +0 -0
- /package/build/{value → esm/value}/codec/from-object.d.mts +0 -0
- /package/build/{value → esm/value}/codec/from-object.mjs +0 -0
- /package/build/{value → esm/value}/codec/from-record.d.mts +0 -0
- /package/build/{value → esm/value}/codec/from-record.mjs +0 -0
- /package/build/{value → esm/value}/codec/from-ref.d.mts +0 -0
- /package/build/{value → esm/value}/codec/from-ref.mjs +0 -0
- /package/build/{value → esm/value}/codec/from-tuple.d.mts +0 -0
- /package/build/{value → esm/value}/codec/from-tuple.mjs +0 -0
- /package/build/{value → esm/value}/codec/from-type.d.mts +0 -0
- /package/build/{value → esm/value}/codec/from-type.mjs +0 -0
- /package/build/{value → esm/value}/codec/from-union.d.mts +0 -0
- /package/build/{value → esm/value}/codec/from-union.mjs +0 -0
- /package/build/{value → esm/value}/codec/has.d.mts +0 -0
- /package/build/{value → esm/value}/codec/has.mjs +0 -0
- /package/build/{value → esm/value}/codec/index.d.mts +0 -0
- /package/build/{value → esm/value}/codec/index.mjs +0 -0
- /package/build/{value → esm/value}/convert/convert.d.mts +0 -0
- /package/build/{value → esm/value}/convert/convert.mjs +0 -0
- /package/build/{value → esm/value}/convert/from-additional.d.mts +0 -0
- /package/build/{value → esm/value}/convert/from-additional.mjs +0 -0
- /package/build/{value → esm/value}/convert/from-array.d.mts +0 -0
- /package/build/{value → esm/value}/convert/from-array.mjs +0 -0
- /package/build/{value → esm/value}/convert/from-base.d.mts +0 -0
- /package/build/{value → esm/value}/convert/from-base.mjs +0 -0
- /package/build/{value → esm/value}/convert/from-bigint.d.mts +0 -0
- /package/build/{value → esm/value}/convert/from-bigint.mjs +0 -0
- /package/build/{value → esm/value}/convert/from-boolean.d.mts +0 -0
- /package/build/{value → esm/value}/convert/from-boolean.mjs +0 -0
- /package/build/{value → esm/value}/convert/from-cyclic.d.mts +0 -0
- /package/build/{value → esm/value}/convert/from-cyclic.mjs +0 -0
- /package/build/{value → esm/value}/convert/from-enum.d.mts +0 -0
- /package/build/{value → esm/value}/convert/from-enum.mjs +0 -0
- /package/build/{value → esm/value}/convert/from-integer.d.mts +0 -0
- /package/build/{value → esm/value}/convert/from-integer.mjs +0 -0
- /package/build/{value → esm/value}/convert/from-intersect.d.mts +0 -0
- /package/build/{value → esm/value}/convert/from-intersect.mjs +0 -0
- /package/build/{value → esm/value}/convert/from-literal.d.mts +0 -0
- /package/build/{value → esm/value}/convert/from-literal.mjs +0 -0
- /package/build/{value → esm/value}/convert/from-null.d.mts +0 -0
- /package/build/{value → esm/value}/convert/from-null.mjs +0 -0
- /package/build/{value → esm/value}/convert/from-number.d.mts +0 -0
- /package/build/{value → esm/value}/convert/from-number.mjs +0 -0
- /package/build/{value → esm/value}/convert/from-object.d.mts +0 -0
- /package/build/{value → esm/value}/convert/from-object.mjs +0 -0
- /package/build/{value → esm/value}/convert/from-record.d.mts +0 -0
- /package/build/{value → esm/value}/convert/from-record.mjs +0 -0
- /package/build/{value → esm/value}/convert/from-ref.d.mts +0 -0
- /package/build/{value → esm/value}/convert/from-ref.mjs +0 -0
- /package/build/{value → esm/value}/convert/from-string.d.mts +0 -0
- /package/build/{value → esm/value}/convert/from-string.mjs +0 -0
- /package/build/{value → esm/value}/convert/from-template-literal.d.mts +0 -0
- /package/build/{value → esm/value}/convert/from-template-literal.mjs +0 -0
- /package/build/{value → esm/value}/convert/from-tuple.d.mts +0 -0
- /package/build/{value → esm/value}/convert/from-tuple.mjs +0 -0
- /package/build/{value → esm/value}/convert/from-type.d.mts +0 -0
- /package/build/{value → esm/value}/convert/from-type.mjs +0 -0
- /package/build/{value → esm/value}/convert/from-undefined.d.mts +0 -0
- /package/build/{value → esm/value}/convert/from-undefined.mjs +0 -0
- /package/build/{value → esm/value}/convert/from-union.d.mts +0 -0
- /package/build/{value → esm/value}/convert/from-union.mjs +0 -0
- /package/build/{value → esm/value}/convert/from-void.d.mts +0 -0
- /package/build/{value → esm/value}/convert/from-void.mjs +0 -0
- /package/build/{value → esm/value}/convert/index.d.mts +0 -0
- /package/build/{value → esm/value}/convert/index.mjs +0 -0
- /package/build/{value → esm/value}/convert/try/index.d.mts +0 -0
- /package/build/{value → esm/value}/convert/try/index.mjs +0 -0
- /package/build/{value → esm/value}/convert/try/try-bigint.d.mts +0 -0
- /package/build/{value → esm/value}/convert/try/try-bigint.mjs +0 -0
- /package/build/{value → esm/value}/convert/try/try-boolean.d.mts +0 -0
- /package/build/{value → esm/value}/convert/try/try-boolean.mjs +0 -0
- /package/build/{value → esm/value}/convert/try/try-null.d.mts +0 -0
- /package/build/{value → esm/value}/convert/try/try-null.mjs +0 -0
- /package/build/{value → esm/value}/convert/try/try-number.d.mts +0 -0
- /package/build/{value → esm/value}/convert/try/try-number.mjs +0 -0
- /package/build/{value → esm/value}/convert/try/try-result.mjs +0 -0
- /package/build/{value → esm/value}/convert/try/try-string.d.mts +0 -0
- /package/build/{value → esm/value}/convert/try/try-string.mjs +0 -0
- /package/build/{value → esm/value}/convert/try/try-undefined.d.mts +0 -0
- /package/build/{value → esm/value}/convert/try/try-undefined.mjs +0 -0
- /package/build/{value → esm/value}/convert/try/try.d.mts +0 -0
- /package/build/{value → esm/value}/convert/try/try.mjs +0 -0
- /package/build/{value → esm/value}/create/create.d.mts +0 -0
- /package/build/{value → esm/value}/create/create.mjs +0 -0
- /package/build/{value → esm/value}/create/error.d.mts +0 -0
- /package/build/{value → esm/value}/create/error.mjs +0 -0
- /package/build/{value → esm/value}/create/from-array.d.mts +0 -0
- /package/build/{value → esm/value}/create/from-array.mjs +0 -0
- /package/build/{value → esm/value}/create/from-async-iterator.d.mts +0 -0
- /package/build/{value → esm/value}/create/from-async-iterator.mjs +0 -0
- /package/build/{value → esm/value}/create/from-base.d.mts +0 -0
- /package/build/{value → esm/value}/create/from-base.mjs +0 -0
- /package/build/{value → esm/value}/create/from-bigint.d.mts +0 -0
- /package/build/{value → esm/value}/create/from-bigint.mjs +0 -0
- /package/build/{value → esm/value}/create/from-boolean.d.mts +0 -0
- /package/build/{value → esm/value}/create/from-boolean.mjs +0 -0
- /package/build/{value → esm/value}/create/from-constructor.d.mts +0 -0
- /package/build/{value → esm/value}/create/from-constructor.mjs +0 -0
- /package/build/{value → esm/value}/create/from-cyclic.d.mts +0 -0
- /package/build/{value → esm/value}/create/from-cyclic.mjs +0 -0
- /package/build/{value → esm/value}/create/from-default.d.mts +0 -0
- /package/build/{value → esm/value}/create/from-default.mjs +0 -0
- /package/build/{value → esm/value}/create/from-enum.d.mts +0 -0
- /package/build/{value → esm/value}/create/from-enum.mjs +0 -0
- /package/build/{value → esm/value}/create/from-function.d.mts +0 -0
- /package/build/{value → esm/value}/create/from-function.mjs +0 -0
- /package/build/{value → esm/value}/create/from-integer.d.mts +0 -0
- /package/build/{value → esm/value}/create/from-integer.mjs +0 -0
- /package/build/{value → esm/value}/create/from-intersect.d.mts +0 -0
- /package/build/{value → esm/value}/create/from-intersect.mjs +0 -0
- /package/build/{value → esm/value}/create/from-iterator.d.mts +0 -0
- /package/build/{value → esm/value}/create/from-iterator.mjs +0 -0
- /package/build/{value → esm/value}/create/from-literal.d.mts +0 -0
- /package/build/{value → esm/value}/create/from-literal.mjs +0 -0
- /package/build/{value → esm/value}/create/from-never.d.mts +0 -0
- /package/build/{value → esm/value}/create/from-never.mjs +0 -0
- /package/build/{value → esm/value}/create/from-null.d.mts +0 -0
- /package/build/{value → esm/value}/create/from-null.mjs +0 -0
- /package/build/{value → esm/value}/create/from-number.d.mts +0 -0
- /package/build/{value → esm/value}/create/from-number.mjs +0 -0
- /package/build/{value → esm/value}/create/from-object.d.mts +0 -0
- /package/build/{value → esm/value}/create/from-object.mjs +0 -0
- /package/build/{value → esm/value}/create/from-promise.d.mts +0 -0
- /package/build/{value → esm/value}/create/from-promise.mjs +0 -0
- /package/build/{value → esm/value}/create/from-record.d.mts +0 -0
- /package/build/{value → esm/value}/create/from-record.mjs +0 -0
- /package/build/{value → esm/value}/create/from-ref.d.mts +0 -0
- /package/build/{value → esm/value}/create/from-ref.mjs +0 -0
- /package/build/{value → esm/value}/create/from-string.d.mts +0 -0
- /package/build/{value → esm/value}/create/from-string.mjs +0 -0
- /package/build/{value → esm/value}/create/from-symbol.d.mts +0 -0
- /package/build/{value → esm/value}/create/from-symbol.mjs +0 -0
- /package/build/{value → esm/value}/create/from-template-literal.d.mts +0 -0
- /package/build/{value → esm/value}/create/from-template-literal.mjs +0 -0
- /package/build/{value → esm/value}/create/from-tuple.d.mts +0 -0
- /package/build/{value → esm/value}/create/from-tuple.mjs +0 -0
- /package/build/{value → esm/value}/create/from-type.d.mts +0 -0
- /package/build/{value → esm/value}/create/from-type.mjs +0 -0
- /package/build/{value → esm/value}/create/from-undefined.d.mts +0 -0
- /package/build/{value → esm/value}/create/from-undefined.mjs +0 -0
- /package/build/{value → esm/value}/create/from-union.d.mts +0 -0
- /package/build/{value → esm/value}/create/from-union.mjs +0 -0
- /package/build/{value → esm/value}/create/from-void.d.mts +0 -0
- /package/build/{value → esm/value}/create/from-void.mjs +0 -0
- /package/build/{value → esm/value}/create/index.d.mts +0 -0
- /package/build/{value → esm/value}/create/index.mjs +0 -0
- /package/build/{value → esm/value}/default/default.d.mts +0 -0
- /package/build/{value → esm/value}/default/default.mjs +0 -0
- /package/build/{value → esm/value}/default/from-array.d.mts +0 -0
- /package/build/{value → esm/value}/default/from-array.mjs +0 -0
- /package/build/{value → esm/value}/default/from-base.d.mts +0 -0
- /package/build/{value → esm/value}/default/from-base.mjs +0 -0
- /package/build/{value → esm/value}/default/from-cyclic.d.mts +0 -0
- /package/build/{value → esm/value}/default/from-cyclic.mjs +0 -0
- /package/build/{value → esm/value}/default/from-default.d.mts +0 -0
- /package/build/{value → esm/value}/default/from-default.mjs +0 -0
- /package/build/{value → esm/value}/default/from-intersect.d.mts +0 -0
- /package/build/{value → esm/value}/default/from-intersect.mjs +0 -0
- /package/build/{value → esm/value}/default/from-object.d.mts +0 -0
- /package/build/{value → esm/value}/default/from-object.mjs +0 -0
- /package/build/{value → esm/value}/default/from-record.d.mts +0 -0
- /package/build/{value → esm/value}/default/from-record.mjs +0 -0
- /package/build/{value → esm/value}/default/from-ref.d.mts +0 -0
- /package/build/{value → esm/value}/default/from-ref.mjs +0 -0
- /package/build/{value → esm/value}/default/from-tuple.d.mts +0 -0
- /package/build/{value → esm/value}/default/from-tuple.mjs +0 -0
- /package/build/{value → esm/value}/default/from-type.d.mts +0 -0
- /package/build/{value → esm/value}/default/from-type.mjs +0 -0
- /package/build/{value → esm/value}/default/from-union.d.mts +0 -0
- /package/build/{value → esm/value}/default/from-union.mjs +0 -0
- /package/build/{value → esm/value}/default/index.d.mts +0 -0
- /package/build/{value → esm/value}/default/index.mjs +0 -0
- /package/build/{value → esm/value}/delta/diff.d.mts +0 -0
- /package/build/{value → esm/value}/delta/diff.mjs +0 -0
- /package/build/{value → esm/value}/delta/edit.d.mts +0 -0
- /package/build/{value → esm/value}/delta/edit.mjs +0 -0
- /package/build/{value → esm/value}/delta/index.d.mts +0 -0
- /package/build/{value → esm/value}/delta/index.mjs +0 -0
- /package/build/{value → esm/value}/delta/patch.d.mts +0 -0
- /package/build/{value → esm/value}/delta/patch.mjs +0 -0
- /package/build/{value → esm/value}/equal/equal.mjs +0 -0
- /package/build/{value → esm/value}/equal/index.d.mts +0 -0
- /package/build/{value → esm/value}/equal/index.mjs +0 -0
- /package/build/{value → esm/value}/errors/errors.d.mts +0 -0
- /package/build/{value → esm/value}/errors/errors.mjs +0 -0
- /package/build/{value → esm/value}/errors/index.d.mts +0 -0
- /package/build/{value → esm/value}/errors/index.mjs +0 -0
- /package/build/{value → esm/value}/hash/hash.mjs +0 -0
- /package/build/{value → esm/value}/hash/index.d.mts +0 -0
- /package/build/{value → esm/value}/hash/index.mjs +0 -0
- /package/build/{value → esm/value}/index.d.mts +0 -0
- /package/build/{value → esm/value}/index.mjs +0 -0
- /package/build/{value → esm/value}/mutate/error.mjs +0 -0
- /package/build/{value → esm/value}/mutate/from-array.d.mts +0 -0
- /package/build/{value → esm/value}/mutate/from-array.mjs +0 -0
- /package/build/{value → esm/value}/mutate/from-object.d.mts +0 -0
- /package/build/{value → esm/value}/mutate/from-object.mjs +0 -0
- /package/build/{value → esm/value}/mutate/from-unknown.d.mts +0 -0
- /package/build/{value → esm/value}/mutate/from-unknown.mjs +0 -0
- /package/build/{value → esm/value}/mutate/from-value.d.mts +0 -0
- /package/build/{value → esm/value}/mutate/from-value.mjs +0 -0
- /package/build/{value → esm/value}/mutate/index.d.mts +0 -0
- /package/build/{value → esm/value}/mutate/index.mjs +0 -0
- /package/build/{value → esm/value}/mutate/mutate.mjs +0 -0
- /package/build/{value → esm/value}/parse/index.d.mts +0 -0
- /package/build/{value → esm/value}/parse/index.mjs +0 -0
- /package/build/{value → esm/value}/parse/parse.d.mts +0 -0
- /package/build/{value → esm/value}/parse/parse.mjs +0 -0
- /package/build/{value → esm/value}/pipeline/index.d.mts +0 -0
- /package/build/{value → esm/value}/pipeline/index.mjs +0 -0
- /package/build/{value → esm/value}/pipeline/pipeline.d.mts +0 -0
- /package/build/{value → esm/value}/pipeline/pipeline.mjs +0 -0
- /package/build/{value → esm/value}/pointer/index.d.mts +0 -0
- /package/build/{value → esm/value}/pointer/index.mjs +0 -0
- /package/build/{value → esm/value}/pointer/pointer.mjs +0 -0
- /package/build/{value → esm/value}/repair/error.d.mts +0 -0
- /package/build/{value → esm/value}/repair/error.mjs +0 -0
- /package/build/{value → esm/value}/repair/from-array.d.mts +0 -0
- /package/build/{value → esm/value}/repair/from-array.mjs +0 -0
- /package/build/{value → esm/value}/repair/from-base.d.mts +0 -0
- /package/build/{value → esm/value}/repair/from-base.mjs +0 -0
- /package/build/{value → esm/value}/repair/from-enum.d.mts +0 -0
- /package/build/{value → esm/value}/repair/from-enum.mjs +0 -0
- /package/build/{value → esm/value}/repair/from-intersect.d.mts +0 -0
- /package/build/{value → esm/value}/repair/from-intersect.mjs +0 -0
- /package/build/{value → esm/value}/repair/from-object.d.mts +0 -0
- /package/build/{value → esm/value}/repair/from-object.mjs +0 -0
- /package/build/{value → esm/value}/repair/from-record.d.mts +0 -0
- /package/build/{value → esm/value}/repair/from-record.mjs +0 -0
- /package/build/{value → esm/value}/repair/from-ref.d.mts +0 -0
- /package/build/{value → esm/value}/repair/from-ref.mjs +0 -0
- /package/build/{value → esm/value}/repair/from-template-literal.d.mts +0 -0
- /package/build/{value → esm/value}/repair/from-template-literal.mjs +0 -0
- /package/build/{value → esm/value}/repair/from-tuple.d.mts +0 -0
- /package/build/{value → esm/value}/repair/from-tuple.mjs +0 -0
- /package/build/{value → esm/value}/repair/from-type.d.mts +0 -0
- /package/build/{value → esm/value}/repair/from-type.mjs +0 -0
- /package/build/{value → esm/value}/repair/from-union.d.mts +0 -0
- /package/build/{value → esm/value}/repair/from-union.mjs +0 -0
- /package/build/{value → esm/value}/repair/from-unknown.d.mts +0 -0
- /package/build/{value → esm/value}/repair/from-unknown.mjs +0 -0
- /package/build/{value → esm/value}/repair/index.d.mts +0 -0
- /package/build/{value → esm/value}/repair/index.mjs +0 -0
- /package/build/{value → esm/value}/repair/repair.d.mts +0 -0
- /package/build/{value → esm/value}/repair/repair.mjs +0 -0
- /package/build/{value → esm/value}/shared/index.d.mts +0 -0
- /package/build/{value → esm/value}/shared/index.mjs +0 -0
- /package/build/{value → esm/value}/shared/optional-undefined.d.mts +0 -0
- /package/build/{value → esm/value}/shared/optional-undefined.mjs +0 -0
- /package/build/{value → esm/value}/value.d.mts +0 -0
- /package/build/{value → esm/value}/value.mjs +0 -0
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import { type StaticType, type StaticDirection } from './static';
|
|
2
|
+
import { type TSchema, type TTupleOptions } from './schema';
|
|
3
|
+
import { type TArray } from './array';
|
|
4
|
+
import { type TOptional } from './_optional';
|
|
5
|
+
import { type TProperties } from './properties';
|
|
6
|
+
import { type TReadonly } from './_readonly';
|
|
7
|
+
import { type TRest } from './rest';
|
|
8
|
+
type StaticLast<Stack extends string[], Direction extends StaticDirection, Context extends TProperties, This extends TProperties, Type extends TSchema, Result extends unknown[]> = (Type extends TRest<infer RestType extends TSchema> ? RestType extends TArray<infer ArrayType extends TSchema> ? [...Result, ...TStaticElement<Stack, Direction, Context, This, ArrayType>[0][]] : [...Result, never] : [...Result, ...TStaticElement<Stack, Direction, Context, This, Type>]);
|
|
9
|
+
type TStaticElement<Stack extends string[], Direction extends StaticDirection, Context extends TProperties, This extends TProperties, Type extends TSchema, IsReadonly extends boolean = Type extends TReadonly ? true : false, IsOptional extends boolean = Type extends TOptional ? true : false, Inferred extends unknown = StaticType<Stack, Direction, Context, This, Type>, Result extends [unknown?] = ([
|
|
10
|
+
IsReadonly,
|
|
11
|
+
IsOptional
|
|
12
|
+
] extends [true, true] ? [Readonly<Inferred>?] : [
|
|
13
|
+
IsReadonly,
|
|
14
|
+
IsOptional
|
|
15
|
+
] extends [false, true] ? [Inferred?] : [
|
|
16
|
+
IsReadonly,
|
|
17
|
+
IsOptional
|
|
18
|
+
] extends [true, false] ? [Readonly<Inferred>] : [
|
|
19
|
+
Inferred
|
|
20
|
+
])> = Result;
|
|
21
|
+
export type TStaticElements<Stack extends string[], Direction extends StaticDirection, Context extends TProperties, This extends TProperties, Types extends TSchema[], Result extends unknown[] = []> = (Types extends [infer Last extends TSchema] ? StaticLast<Stack, Direction, Context, This, Last, Result> : Types extends [infer Left extends TSchema, ...infer Right extends TSchema[]] ? TStaticElements<Stack, Direction, Context, This, Right, [...Result, ...TStaticElement<Stack, Direction, Context, This, Left>]> : Result);
|
|
22
|
+
export type StaticTuple<Stack extends string[], Direction extends StaticDirection, Context extends TProperties, This extends TProperties, Types extends TSchema[], Elements extends unknown[] = TStaticElements<Stack, Direction, Context, This, Types>, Result extends unknown[] = Elements> = Result;
|
|
23
|
+
/** Represents a Tuple type. */
|
|
24
|
+
export interface TTuple<Types extends TSchema[] = TSchema[]> extends TSchema {
|
|
25
|
+
'~kind': 'Tuple';
|
|
26
|
+
type: 'array';
|
|
27
|
+
additionalItems: false;
|
|
28
|
+
items: Types;
|
|
29
|
+
minItems: Types['length'];
|
|
30
|
+
}
|
|
31
|
+
/** Creates a Tuple type. */
|
|
32
|
+
export declare function Tuple<Types extends TSchema[]>(types: [...Types], options?: TTupleOptions): TTuple<Types>;
|
|
33
|
+
/** Returns true if the given value is TTuple. */
|
|
34
|
+
export declare function IsTuple(value: unknown): value is TTuple;
|
|
35
|
+
/** Extracts options from a TTuple. */
|
|
36
|
+
export declare function TupleOptions(type: TTuple): TTupleOptions;
|
|
37
|
+
export {};
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// deno-fmt-ignore-file
|
|
3
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
4
|
+
exports.Tuple = Tuple;
|
|
5
|
+
exports.IsTuple = IsTuple;
|
|
6
|
+
exports.TupleOptions = TupleOptions;
|
|
7
|
+
const index_1 = require("../../system/memory/index");
|
|
8
|
+
const schema_1 = require("./schema");
|
|
9
|
+
// ------------------------------------------------------------------
|
|
10
|
+
// Factory
|
|
11
|
+
// ------------------------------------------------------------------
|
|
12
|
+
/** Creates a Tuple type. */
|
|
13
|
+
function Tuple(types, options = {}) {
|
|
14
|
+
const [items, minItems, additionalItems] = [types, types.length, false];
|
|
15
|
+
return index_1.Memory.Create({ ['~kind']: 'Tuple' }, { type: 'array', additionalItems, items, minItems }, options);
|
|
16
|
+
}
|
|
17
|
+
// ------------------------------------------------------------------
|
|
18
|
+
// Guard
|
|
19
|
+
// ------------------------------------------------------------------
|
|
20
|
+
/** Returns true if the given value is TTuple. */
|
|
21
|
+
function IsTuple(value) {
|
|
22
|
+
return (0, schema_1.IsKind)(value, 'Tuple');
|
|
23
|
+
}
|
|
24
|
+
// ------------------------------------------------------------------
|
|
25
|
+
// Options
|
|
26
|
+
// ------------------------------------------------------------------
|
|
27
|
+
/** Extracts options from a TTuple. */
|
|
28
|
+
function TupleOptions(type) {
|
|
29
|
+
return index_1.Memory.Discard(type, ['~kind', 'type', 'items', 'minItems', 'additionalItems']);
|
|
30
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { type TSchema, type TSchemaOptions } from './schema';
|
|
2
|
+
export type StaticUndefined = undefined;
|
|
3
|
+
/** Represents a Undefined type. */
|
|
4
|
+
export interface TUndefined extends TSchema {
|
|
5
|
+
'~kind': 'Undefined';
|
|
6
|
+
type: 'undefined';
|
|
7
|
+
}
|
|
8
|
+
/** Creates a Undefined type. */
|
|
9
|
+
export declare function Undefined(options?: TSchemaOptions): TUndefined;
|
|
10
|
+
/** Returns true if the given value is TUndefined. */
|
|
11
|
+
export declare function IsUndefined(value: unknown): value is TUndefined;
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// deno-fmt-ignore-file
|
|
3
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
4
|
+
exports.Undefined = Undefined;
|
|
5
|
+
exports.IsUndefined = IsUndefined;
|
|
6
|
+
const index_1 = require("../../system/memory/index");
|
|
7
|
+
const schema_1 = require("./schema");
|
|
8
|
+
// ------------------------------------------------------------------
|
|
9
|
+
// Factory
|
|
10
|
+
// ------------------------------------------------------------------
|
|
11
|
+
/** Creates a Undefined type. */
|
|
12
|
+
function Undefined(options) {
|
|
13
|
+
return index_1.Memory.Create({ '~kind': 'Undefined' }, { type: 'undefined' }, options);
|
|
14
|
+
}
|
|
15
|
+
// ------------------------------------------------------------------
|
|
16
|
+
// Guard
|
|
17
|
+
// ------------------------------------------------------------------
|
|
18
|
+
/** Returns true if the given value is TUndefined. */
|
|
19
|
+
function IsUndefined(value) {
|
|
20
|
+
return (0, schema_1.IsKind)(value, 'Undefined');
|
|
21
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { type StaticType, type StaticDirection } from './static';
|
|
2
|
+
import { type TSchema, type TSchemaOptions } from './schema';
|
|
3
|
+
import { type TProperties } from './properties';
|
|
4
|
+
export type StaticUnion<Stack extends string[], Direction extends StaticDirection, Context extends TProperties, This extends TProperties, Types extends TSchema[], Result extends unknown = never> = (Types extends [infer Left extends TSchema, ...infer Right extends TSchema[]] ? StaticUnion<Stack, Direction, Context, This, Right, Result | StaticType<Stack, Direction, Context, This, Left>> : Result);
|
|
5
|
+
/** Represents a logical Union type. */
|
|
6
|
+
export interface TUnion<Types extends TSchema[] = TSchema[]> extends TSchema {
|
|
7
|
+
'~kind': 'Union';
|
|
8
|
+
anyOf: Types;
|
|
9
|
+
}
|
|
10
|
+
/** Creates a Union type. */
|
|
11
|
+
export declare function Union<Types extends TSchema[]>(anyOf: [...Types], options?: TSchemaOptions): TUnion<Types>;
|
|
12
|
+
/** Returns true if the given value is TUnion. */
|
|
13
|
+
export declare function IsUnion(value: unknown): value is TUnion;
|
|
14
|
+
/** Extracts options from a TUnion. */
|
|
15
|
+
export declare function UnionOptions(type: TUnion): TSchemaOptions;
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// deno-fmt-ignore-file
|
|
3
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
4
|
+
exports.Union = Union;
|
|
5
|
+
exports.IsUnion = IsUnion;
|
|
6
|
+
exports.UnionOptions = UnionOptions;
|
|
7
|
+
const index_1 = require("../../system/memory/index");
|
|
8
|
+
const schema_1 = require("./schema");
|
|
9
|
+
// ------------------------------------------------------------------
|
|
10
|
+
// Factory
|
|
11
|
+
// ------------------------------------------------------------------
|
|
12
|
+
/** Creates a Union type. */
|
|
13
|
+
function Union(anyOf, options = {}) {
|
|
14
|
+
return index_1.Memory.Create({ '~kind': 'Union' }, { anyOf }, options);
|
|
15
|
+
}
|
|
16
|
+
// ------------------------------------------------------------------
|
|
17
|
+
// Guard
|
|
18
|
+
// ------------------------------------------------------------------
|
|
19
|
+
/** Returns true if the given value is TUnion. */
|
|
20
|
+
function IsUnion(value) {
|
|
21
|
+
return (0, schema_1.IsKind)(value, 'Union');
|
|
22
|
+
}
|
|
23
|
+
// ------------------------------------------------------------------
|
|
24
|
+
// Options
|
|
25
|
+
// ------------------------------------------------------------------
|
|
26
|
+
/** Extracts options from a TUnion. */
|
|
27
|
+
function UnionOptions(type) {
|
|
28
|
+
return index_1.Memory.Discard(type, ['~kind', 'anyOf']);
|
|
29
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { type TSchema, type TSchemaOptions } from './schema';
|
|
2
|
+
export type StaticUnknown = unknown;
|
|
3
|
+
/** Represents an Unknown type. */
|
|
4
|
+
export interface TUnknown extends TSchema {
|
|
5
|
+
'~kind': 'Unknown';
|
|
6
|
+
}
|
|
7
|
+
/** Creates an Unknown type. */
|
|
8
|
+
export declare function Unknown(options?: TSchemaOptions): TUnknown;
|
|
9
|
+
/** Returns true if the given value is TUnknown. */
|
|
10
|
+
export declare function IsUnknown(value: unknown): value is TUnknown;
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// deno-fmt-ignore-file
|
|
3
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
4
|
+
exports.Unknown = Unknown;
|
|
5
|
+
exports.IsUnknown = IsUnknown;
|
|
6
|
+
const index_1 = require("../../system/memory/index");
|
|
7
|
+
const schema_1 = require("./schema");
|
|
8
|
+
// ------------------------------------------------------------------
|
|
9
|
+
// Factory
|
|
10
|
+
// ------------------------------------------------------------------
|
|
11
|
+
/** Creates an Unknown type. */
|
|
12
|
+
function Unknown(options) {
|
|
13
|
+
return index_1.Memory.Create({ ['~kind']: 'Unknown' }, {}, options);
|
|
14
|
+
}
|
|
15
|
+
// ------------------------------------------------------------------
|
|
16
|
+
// Guard
|
|
17
|
+
// ------------------------------------------------------------------
|
|
18
|
+
/** Returns true if the given value is TUnknown. */
|
|
19
|
+
function IsUnknown(value) {
|
|
20
|
+
return (0, schema_1.IsKind)(value, 'Unknown');
|
|
21
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { type TSchema } from './schema';
|
|
2
|
+
export type StaticUnsafe<Type extends unknown> = Type;
|
|
3
|
+
/** Represents an Unsafe type. */
|
|
4
|
+
export interface TUnsafe<Type extends unknown = unknown> extends TSchema {
|
|
5
|
+
'~kind': 'Unsafe';
|
|
6
|
+
'~hint': Type;
|
|
7
|
+
}
|
|
8
|
+
/** Creates a Unsafe type. */
|
|
9
|
+
export declare function Unsafe<Type extends unknown>(schema: TSchema): TUnsafe<Type>;
|
|
10
|
+
/** Returns true if the given value is TUnsafe. */
|
|
11
|
+
export declare function IsUnsafe(value: unknown): value is TUnsafe;
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// deno-fmt-ignore-file
|
|
3
|
+
// deno-lint-ignore-file
|
|
4
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
|
+
exports.Unsafe = Unsafe;
|
|
6
|
+
exports.IsUnsafe = IsUnsafe;
|
|
7
|
+
const index_1 = require("../../system/memory/index");
|
|
8
|
+
const schema_1 = require("./schema");
|
|
9
|
+
// ------------------------------------------------------------------
|
|
10
|
+
// Factory
|
|
11
|
+
// ------------------------------------------------------------------
|
|
12
|
+
/** Creates a Unsafe type. */
|
|
13
|
+
function Unsafe(schema) {
|
|
14
|
+
return index_1.Memory.Create({ ['~kind']: 'Unsafe' }, {}, schema);
|
|
15
|
+
}
|
|
16
|
+
// ------------------------------------------------------------------
|
|
17
|
+
// Guard
|
|
18
|
+
// ------------------------------------------------------------------
|
|
19
|
+
/** Returns true if the given value is TUnsafe. */
|
|
20
|
+
function IsUnsafe(value) {
|
|
21
|
+
return (0, schema_1.IsKind)(value, 'Unsafe');
|
|
22
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { type TSchema, type TSchemaOptions } from './schema';
|
|
2
|
+
export type StaticVoid = void;
|
|
3
|
+
/** Represents a Void type. */
|
|
4
|
+
export interface TVoid extends TSchema {
|
|
5
|
+
'~kind': 'Void';
|
|
6
|
+
type: 'void';
|
|
7
|
+
}
|
|
8
|
+
/** Creates a Void type. */
|
|
9
|
+
export declare function Void(options?: TSchemaOptions): TVoid;
|
|
10
|
+
/** Returns true if the given value is TVoid. */
|
|
11
|
+
export declare function IsVoid(value: unknown): value is TVoid;
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// deno-fmt-ignore-file
|
|
3
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
4
|
+
exports.Void = Void;
|
|
5
|
+
exports.IsVoid = IsVoid;
|
|
6
|
+
const index_1 = require("../../system/memory/index");
|
|
7
|
+
const schema_1 = require("./schema");
|
|
8
|
+
// ------------------------------------------------------------------
|
|
9
|
+
// Factory
|
|
10
|
+
// ------------------------------------------------------------------
|
|
11
|
+
/** Creates a Void type. */
|
|
12
|
+
function Void(options) {
|
|
13
|
+
return index_1.Memory.Create({ '~kind': 'Void' }, { type: 'void' }, options);
|
|
14
|
+
}
|
|
15
|
+
// ------------------------------------------------------------------
|
|
16
|
+
// Guard
|
|
17
|
+
// ------------------------------------------------------------------
|
|
18
|
+
/** Returns true if the given value is TVoid. */
|
|
19
|
+
function IsVoid(value) {
|
|
20
|
+
return (0, schema_1.IsKind)(value, 'Void');
|
|
21
|
+
}
|
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
export { Instantiate, type TInstantiate } from './type/engine/instantiate';
|
|
2
|
+
export { Extends, ExtendsResult, type TExtends } from './type/extends/index';
|
|
3
|
+
export { Script, type TScript } from './type/script/index';
|
|
4
|
+
export { Awaited, type AwaitedDeferred, type TAwaited } from './type/action/awaited';
|
|
5
|
+
export { Capitalize, type TCapitalize, type TCapitalizeDeferred } from './type/action/capitalize';
|
|
6
|
+
export { Conditional, type TConditional, type TConditionalDeferred } from './type/action/conditional';
|
|
7
|
+
export { ConstructorParameters, type TConstructorParameters, type TConstructorParametersDeferred } from './type/action/constructor-parameters';
|
|
8
|
+
export { Evaluate, type TEvaluate, type TEvaluateDeferred } from './type/action/evaluate';
|
|
9
|
+
export { Exclude, type TExclude, type TExcludeDeferred } from './type/action/exclude';
|
|
10
|
+
export { Extract, type TExtract, type TExtractDeferred } from './type/action/extract';
|
|
11
|
+
export { Index, type TIndex, type TIndexDeferred } from './type/action/index';
|
|
12
|
+
export { InstanceType, type TInstanceType, type TInstanceTypeDeferred } from './type/action/instance-type';
|
|
13
|
+
export { Interface, type TInterface, type TInterfaceDeferred } from './type/action/interface';
|
|
14
|
+
export { KeyOf, type TKeyOf, type TKeyOfDeferred } from './type/action/keyof';
|
|
15
|
+
export { Lowercase, type TLowercase, type TLowercaseDeferred } from './type/action/lowercase';
|
|
16
|
+
export { Mapped, type TMapped, type TMappedDeferred } from './type/action/mapped';
|
|
17
|
+
export { Module, type TModule, type TModuleDeferred } from './type/action/module';
|
|
18
|
+
export { NonNullable, type TNonNullable, type TNonNullableDeferred } from './type/action/non-nullable';
|
|
19
|
+
export { Omit, type TOmit, type TOmitDeferred } from './type/action/omit';
|
|
20
|
+
export { Options, type TOptions } from './type/action/options';
|
|
21
|
+
export { Parameters, type TParameters, type TParametersDeferred } from './type/action/parameters';
|
|
22
|
+
export { Partial, type TPartial, type TPartialDeferred } from './type/action/partial';
|
|
23
|
+
export { Pick, type TPick, type TPickDeferred } from './type/action/pick';
|
|
24
|
+
export { Required, type TRequired, type TRequiredDeferred } from './type/action/required';
|
|
25
|
+
export { ReturnType, type TReturnType, type TReturnTypeDeferred } from './type/action/return-type';
|
|
26
|
+
export { type TUncapitalize, type TUncapitalizeDeferred, Uncapitalize } from './type/action/uncapitalize';
|
|
27
|
+
export { type TUppercase, type TUppercaseDeferred, Uppercase } from './type/action/uppercase';
|
|
28
|
+
export { Codec, Decode, DecodeBuilder, Encode, EncodeBuilder, IsCodec, type TCodec } from './type/types/_codec';
|
|
29
|
+
export { IsOptional, Optional, type TOptional } from './type/types/_optional';
|
|
30
|
+
export { IsReadonly, Readonly, type TReadonly } from './type/types/_readonly';
|
|
31
|
+
export { IsRefine, Refine, type TRefine, type TRefineCallback, type TRefinement } from './type/types/_refine';
|
|
32
|
+
export { Any, IsAny, type TAny } from './type/types/any';
|
|
33
|
+
export { Array, IsArray, type TArray } from './type/types/array';
|
|
34
|
+
export { AsyncIterator, IsAsyncIterator, type TAsyncIterator } from './type/types/async-iterator';
|
|
35
|
+
export { Base, IsBase } from './type/types/base';
|
|
36
|
+
export { BigInt, IsBigInt, type TBigInt } from './type/types/bigint';
|
|
37
|
+
export { Boolean, IsBoolean, type TBoolean } from './type/types/boolean';
|
|
38
|
+
export { Call, IsCall, type TCall } from './type/types/call';
|
|
39
|
+
export { Constructor, IsConstructor, type TConstructor } from './type/types/constructor';
|
|
40
|
+
export { Cyclic, IsCyclic, type TCyclic } from './type/types/cyclic';
|
|
41
|
+
export { Enum, IsEnum, type TEnum, type TEnumValue } from './type/types/enum';
|
|
42
|
+
export { Function, IsFunction, type TFunction } from './type/types/function';
|
|
43
|
+
export { Generic, IsGeneric, type TGeneric } from './type/types/generic';
|
|
44
|
+
export { Identifier, IsIdentifier, type TIdentifier } from './type/types/identifier';
|
|
45
|
+
export { Infer, IsInfer, type TInfer } from './type/types/infer';
|
|
46
|
+
export { Integer, IsInteger, type TInteger } from './type/types/integer';
|
|
47
|
+
export { Intersect, IsIntersect, type TIntersect } from './type/types/intersect';
|
|
48
|
+
export { IsIterator, Iterator, type TIterator } from './type/types/iterator';
|
|
49
|
+
export { IsLiteral, Literal, type TLiteral, type TLiteralValue } from './type/types/literal';
|
|
50
|
+
export { IsNever, Never, type TNever } from './type/types/never';
|
|
51
|
+
export { IsNull, Null, type TNull } from './type/types/null';
|
|
52
|
+
export { IsNumber, Number, type TNumber } from './type/types/number';
|
|
53
|
+
export { IsObject, Object, type TObject } from './type/types/object';
|
|
54
|
+
export { IsParameter, Parameter, type TParameter } from './type/types/parameter';
|
|
55
|
+
export { IsPromise, Promise, type TPromise } from './type/types/promise';
|
|
56
|
+
export { type TProperties, type TRequiredArray } from './type/types/properties';
|
|
57
|
+
export { IsRecord, Record, RecordKey, RecordPattern as RecordKeyAsPattern, RecordValue, type TRecord, type TRecordKey as TRecordKey, type TRecordPattern as TRecordKeyAsPattern, type TRecordValue } from './type/types/record';
|
|
58
|
+
export { IsRef, Ref, type TRef } from './type/types/ref';
|
|
59
|
+
export { IsRest, Rest, type TRest } from './type/types/rest';
|
|
60
|
+
export { IsKind, IsSchema, type TArrayOptions, type TFormat, type TIntersectOptions, type TNumberOptions, type TObjectOptions, type TSchema, type TSchemaOptions, type TStringOptions, type TTupleOptions } from './type/types/schema';
|
|
61
|
+
export { type Static, type StaticDecode, type StaticEncode, type StaticParse } from './type/types/static';
|
|
62
|
+
export { IsString, String, type TString } from './type/types/string';
|
|
63
|
+
export { IsSymbol, Symbol, type TSymbol } from './type/types/symbol';
|
|
64
|
+
export { IsTemplateLiteral, TemplateLiteral, type TTemplateLiteral } from './type/types/template-literal';
|
|
65
|
+
export { IsThis, This, type TThis } from './type/types/this';
|
|
66
|
+
export { IsTuple, type TTuple, Tuple } from './type/types/tuple';
|
|
67
|
+
export { IsUndefined, type TUndefined, Undefined } from './type/types/undefined';
|
|
68
|
+
export { IsUnion, type TUnion, Union } from './type/types/union';
|
|
69
|
+
export { IsUnknown, type TUnknown, Unknown } from './type/types/unknown';
|
|
70
|
+
export { IsUnsafe, type TUnsafe, Unsafe } from './type/types/unsafe';
|
|
71
|
+
export { IsVoid, type TVoid, Void } from './type/types/void';
|
|
@@ -0,0 +1,211 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.IsBigInt = exports.BigInt = exports.IsBase = exports.Base = exports.IsAsyncIterator = exports.AsyncIterator = exports.IsArray = exports.Array = exports.IsAny = exports.Any = exports.Refine = exports.IsRefine = exports.Readonly = exports.IsReadonly = exports.Optional = exports.IsOptional = exports.IsCodec = exports.EncodeBuilder = exports.Encode = exports.DecodeBuilder = exports.Decode = exports.Codec = exports.Uppercase = exports.Uncapitalize = exports.ReturnType = exports.Required = exports.Pick = exports.Partial = exports.Parameters = exports.Options = exports.Omit = exports.NonNullable = exports.Module = exports.Mapped = exports.Lowercase = exports.KeyOf = exports.Interface = exports.InstanceType = exports.Index = exports.Extract = exports.Exclude = exports.Evaluate = exports.ConstructorParameters = exports.Conditional = exports.Capitalize = exports.Awaited = exports.Script = exports.ExtendsResult = exports.Extends = exports.Instantiate = void 0;
|
|
4
|
+
exports.IsString = exports.IsSchema = exports.IsKind = exports.Rest = exports.IsRest = exports.Ref = exports.IsRef = exports.RecordValue = exports.RecordKeyAsPattern = exports.RecordKey = exports.Record = exports.IsRecord = exports.Promise = exports.IsPromise = exports.Parameter = exports.IsParameter = exports.Object = exports.IsObject = exports.Number = exports.IsNumber = exports.Null = exports.IsNull = exports.Never = exports.IsNever = exports.Literal = exports.IsLiteral = exports.Iterator = exports.IsIterator = exports.IsIntersect = exports.Intersect = exports.IsInteger = exports.Integer = exports.IsInfer = exports.Infer = exports.IsIdentifier = exports.Identifier = exports.IsGeneric = exports.Generic = exports.IsFunction = exports.Function = exports.IsEnum = exports.Enum = exports.IsCyclic = exports.Cyclic = exports.IsConstructor = exports.Constructor = exports.IsCall = exports.Call = exports.IsBoolean = exports.Boolean = void 0;
|
|
5
|
+
exports.Void = exports.IsVoid = exports.Unsafe = exports.IsUnsafe = exports.Unknown = exports.IsUnknown = exports.Union = exports.IsUnion = exports.Undefined = exports.IsUndefined = exports.Tuple = exports.IsTuple = exports.This = exports.IsThis = exports.TemplateLiteral = exports.IsTemplateLiteral = exports.Symbol = exports.IsSymbol = exports.String = void 0;
|
|
6
|
+
// ------------------------------------------------------------------
|
|
7
|
+
// Engine
|
|
8
|
+
// ------------------------------------------------------------------
|
|
9
|
+
var instantiate_1 = require("./type/engine/instantiate");
|
|
10
|
+
Object.defineProperty(exports, "Instantiate", { enumerable: true, get: function () { return instantiate_1.Instantiate; } });
|
|
11
|
+
// ------------------------------------------------------------------
|
|
12
|
+
// Extends
|
|
13
|
+
// ------------------------------------------------------------------
|
|
14
|
+
var index_1 = require("./type/extends/index");
|
|
15
|
+
Object.defineProperty(exports, "Extends", { enumerable: true, get: function () { return index_1.Extends; } });
|
|
16
|
+
Object.defineProperty(exports, "ExtendsResult", { enumerable: true, get: function () { return index_1.ExtendsResult; } });
|
|
17
|
+
// ------------------------------------------------------------------
|
|
18
|
+
// Script
|
|
19
|
+
// ------------------------------------------------------------------
|
|
20
|
+
var index_2 = require("./type/script/index");
|
|
21
|
+
Object.defineProperty(exports, "Script", { enumerable: true, get: function () { return index_2.Script; } });
|
|
22
|
+
// ------------------------------------------------------------------
|
|
23
|
+
// Actions
|
|
24
|
+
// ------------------------------------------------------------------
|
|
25
|
+
var awaited_1 = require("./type/action/awaited");
|
|
26
|
+
Object.defineProperty(exports, "Awaited", { enumerable: true, get: function () { return awaited_1.Awaited; } });
|
|
27
|
+
var capitalize_1 = require("./type/action/capitalize");
|
|
28
|
+
Object.defineProperty(exports, "Capitalize", { enumerable: true, get: function () { return capitalize_1.Capitalize; } });
|
|
29
|
+
var conditional_1 = require("./type/action/conditional");
|
|
30
|
+
Object.defineProperty(exports, "Conditional", { enumerable: true, get: function () { return conditional_1.Conditional; } });
|
|
31
|
+
var constructor_parameters_1 = require("./type/action/constructor-parameters");
|
|
32
|
+
Object.defineProperty(exports, "ConstructorParameters", { enumerable: true, get: function () { return constructor_parameters_1.ConstructorParameters; } });
|
|
33
|
+
var evaluate_1 = require("./type/action/evaluate");
|
|
34
|
+
Object.defineProperty(exports, "Evaluate", { enumerable: true, get: function () { return evaluate_1.Evaluate; } });
|
|
35
|
+
var exclude_1 = require("./type/action/exclude");
|
|
36
|
+
Object.defineProperty(exports, "Exclude", { enumerable: true, get: function () { return exclude_1.Exclude; } });
|
|
37
|
+
var extract_1 = require("./type/action/extract");
|
|
38
|
+
Object.defineProperty(exports, "Extract", { enumerable: true, get: function () { return extract_1.Extract; } });
|
|
39
|
+
var index_3 = require("./type/action/index");
|
|
40
|
+
Object.defineProperty(exports, "Index", { enumerable: true, get: function () { return index_3.Index; } });
|
|
41
|
+
var instance_type_1 = require("./type/action/instance-type");
|
|
42
|
+
Object.defineProperty(exports, "InstanceType", { enumerable: true, get: function () { return instance_type_1.InstanceType; } });
|
|
43
|
+
var interface_1 = require("./type/action/interface");
|
|
44
|
+
Object.defineProperty(exports, "Interface", { enumerable: true, get: function () { return interface_1.Interface; } });
|
|
45
|
+
var keyof_1 = require("./type/action/keyof");
|
|
46
|
+
Object.defineProperty(exports, "KeyOf", { enumerable: true, get: function () { return keyof_1.KeyOf; } });
|
|
47
|
+
var lowercase_1 = require("./type/action/lowercase");
|
|
48
|
+
Object.defineProperty(exports, "Lowercase", { enumerable: true, get: function () { return lowercase_1.Lowercase; } });
|
|
49
|
+
var mapped_1 = require("./type/action/mapped");
|
|
50
|
+
Object.defineProperty(exports, "Mapped", { enumerable: true, get: function () { return mapped_1.Mapped; } });
|
|
51
|
+
var module_1 = require("./type/action/module");
|
|
52
|
+
Object.defineProperty(exports, "Module", { enumerable: true, get: function () { return module_1.Module; } });
|
|
53
|
+
var non_nullable_1 = require("./type/action/non-nullable");
|
|
54
|
+
Object.defineProperty(exports, "NonNullable", { enumerable: true, get: function () { return non_nullable_1.NonNullable; } });
|
|
55
|
+
var omit_1 = require("./type/action/omit");
|
|
56
|
+
Object.defineProperty(exports, "Omit", { enumerable: true, get: function () { return omit_1.Omit; } });
|
|
57
|
+
var options_1 = require("./type/action/options");
|
|
58
|
+
Object.defineProperty(exports, "Options", { enumerable: true, get: function () { return options_1.Options; } });
|
|
59
|
+
var parameters_1 = require("./type/action/parameters");
|
|
60
|
+
Object.defineProperty(exports, "Parameters", { enumerable: true, get: function () { return parameters_1.Parameters; } });
|
|
61
|
+
var partial_1 = require("./type/action/partial");
|
|
62
|
+
Object.defineProperty(exports, "Partial", { enumerable: true, get: function () { return partial_1.Partial; } });
|
|
63
|
+
var pick_1 = require("./type/action/pick");
|
|
64
|
+
Object.defineProperty(exports, "Pick", { enumerable: true, get: function () { return pick_1.Pick; } });
|
|
65
|
+
var required_1 = require("./type/action/required");
|
|
66
|
+
Object.defineProperty(exports, "Required", { enumerable: true, get: function () { return required_1.Required; } });
|
|
67
|
+
var return_type_1 = require("./type/action/return-type");
|
|
68
|
+
Object.defineProperty(exports, "ReturnType", { enumerable: true, get: function () { return return_type_1.ReturnType; } });
|
|
69
|
+
var uncapitalize_1 = require("./type/action/uncapitalize");
|
|
70
|
+
Object.defineProperty(exports, "Uncapitalize", { enumerable: true, get: function () { return uncapitalize_1.Uncapitalize; } });
|
|
71
|
+
var uppercase_1 = require("./type/action/uppercase");
|
|
72
|
+
Object.defineProperty(exports, "Uppercase", { enumerable: true, get: function () { return uppercase_1.Uppercase; } });
|
|
73
|
+
// ------------------------------------------------------------------
|
|
74
|
+
// Extension
|
|
75
|
+
// ------------------------------------------------------------------
|
|
76
|
+
var _codec_1 = require("./type/types/_codec");
|
|
77
|
+
Object.defineProperty(exports, "Codec", { enumerable: true, get: function () { return _codec_1.Codec; } });
|
|
78
|
+
Object.defineProperty(exports, "Decode", { enumerable: true, get: function () { return _codec_1.Decode; } });
|
|
79
|
+
Object.defineProperty(exports, "DecodeBuilder", { enumerable: true, get: function () { return _codec_1.DecodeBuilder; } });
|
|
80
|
+
Object.defineProperty(exports, "Encode", { enumerable: true, get: function () { return _codec_1.Encode; } });
|
|
81
|
+
Object.defineProperty(exports, "EncodeBuilder", { enumerable: true, get: function () { return _codec_1.EncodeBuilder; } });
|
|
82
|
+
Object.defineProperty(exports, "IsCodec", { enumerable: true, get: function () { return _codec_1.IsCodec; } });
|
|
83
|
+
var _optional_1 = require("./type/types/_optional");
|
|
84
|
+
Object.defineProperty(exports, "IsOptional", { enumerable: true, get: function () { return _optional_1.IsOptional; } });
|
|
85
|
+
Object.defineProperty(exports, "Optional", { enumerable: true, get: function () { return _optional_1.Optional; } });
|
|
86
|
+
var _readonly_1 = require("./type/types/_readonly");
|
|
87
|
+
Object.defineProperty(exports, "IsReadonly", { enumerable: true, get: function () { return _readonly_1.IsReadonly; } });
|
|
88
|
+
Object.defineProperty(exports, "Readonly", { enumerable: true, get: function () { return _readonly_1.Readonly; } });
|
|
89
|
+
var _refine_1 = require("./type/types/_refine");
|
|
90
|
+
Object.defineProperty(exports, "IsRefine", { enumerable: true, get: function () { return _refine_1.IsRefine; } });
|
|
91
|
+
Object.defineProperty(exports, "Refine", { enumerable: true, get: function () { return _refine_1.Refine; } });
|
|
92
|
+
// ------------------------------------------------------------------
|
|
93
|
+
// Standard
|
|
94
|
+
// ------------------------------------------------------------------
|
|
95
|
+
var any_1 = require("./type/types/any");
|
|
96
|
+
Object.defineProperty(exports, "Any", { enumerable: true, get: function () { return any_1.Any; } });
|
|
97
|
+
Object.defineProperty(exports, "IsAny", { enumerable: true, get: function () { return any_1.IsAny; } });
|
|
98
|
+
var array_1 = require("./type/types/array");
|
|
99
|
+
Object.defineProperty(exports, "Array", { enumerable: true, get: function () { return array_1.Array; } });
|
|
100
|
+
Object.defineProperty(exports, "IsArray", { enumerable: true, get: function () { return array_1.IsArray; } });
|
|
101
|
+
var async_iterator_1 = require("./type/types/async-iterator");
|
|
102
|
+
Object.defineProperty(exports, "AsyncIterator", { enumerable: true, get: function () { return async_iterator_1.AsyncIterator; } });
|
|
103
|
+
Object.defineProperty(exports, "IsAsyncIterator", { enumerable: true, get: function () { return async_iterator_1.IsAsyncIterator; } });
|
|
104
|
+
var base_1 = require("./type/types/base");
|
|
105
|
+
Object.defineProperty(exports, "Base", { enumerable: true, get: function () { return base_1.Base; } });
|
|
106
|
+
Object.defineProperty(exports, "IsBase", { enumerable: true, get: function () { return base_1.IsBase; } });
|
|
107
|
+
var bigint_1 = require("./type/types/bigint");
|
|
108
|
+
Object.defineProperty(exports, "BigInt", { enumerable: true, get: function () { return bigint_1.BigInt; } });
|
|
109
|
+
Object.defineProperty(exports, "IsBigInt", { enumerable: true, get: function () { return bigint_1.IsBigInt; } });
|
|
110
|
+
var boolean_1 = require("./type/types/boolean");
|
|
111
|
+
Object.defineProperty(exports, "Boolean", { enumerable: true, get: function () { return boolean_1.Boolean; } });
|
|
112
|
+
Object.defineProperty(exports, "IsBoolean", { enumerable: true, get: function () { return boolean_1.IsBoolean; } });
|
|
113
|
+
var call_1 = require("./type/types/call");
|
|
114
|
+
Object.defineProperty(exports, "Call", { enumerable: true, get: function () { return call_1.Call; } });
|
|
115
|
+
Object.defineProperty(exports, "IsCall", { enumerable: true, get: function () { return call_1.IsCall; } });
|
|
116
|
+
var constructor_1 = require("./type/types/constructor");
|
|
117
|
+
Object.defineProperty(exports, "Constructor", { enumerable: true, get: function () { return constructor_1.Constructor; } });
|
|
118
|
+
Object.defineProperty(exports, "IsConstructor", { enumerable: true, get: function () { return constructor_1.IsConstructor; } });
|
|
119
|
+
var cyclic_1 = require("./type/types/cyclic");
|
|
120
|
+
Object.defineProperty(exports, "Cyclic", { enumerable: true, get: function () { return cyclic_1.Cyclic; } });
|
|
121
|
+
Object.defineProperty(exports, "IsCyclic", { enumerable: true, get: function () { return cyclic_1.IsCyclic; } });
|
|
122
|
+
var enum_1 = require("./type/types/enum");
|
|
123
|
+
Object.defineProperty(exports, "Enum", { enumerable: true, get: function () { return enum_1.Enum; } });
|
|
124
|
+
Object.defineProperty(exports, "IsEnum", { enumerable: true, get: function () { return enum_1.IsEnum; } });
|
|
125
|
+
var function_1 = require("./type/types/function");
|
|
126
|
+
Object.defineProperty(exports, "Function", { enumerable: true, get: function () { return function_1.Function; } });
|
|
127
|
+
Object.defineProperty(exports, "IsFunction", { enumerable: true, get: function () { return function_1.IsFunction; } });
|
|
128
|
+
var generic_1 = require("./type/types/generic");
|
|
129
|
+
Object.defineProperty(exports, "Generic", { enumerable: true, get: function () { return generic_1.Generic; } });
|
|
130
|
+
Object.defineProperty(exports, "IsGeneric", { enumerable: true, get: function () { return generic_1.IsGeneric; } });
|
|
131
|
+
var identifier_1 = require("./type/types/identifier");
|
|
132
|
+
Object.defineProperty(exports, "Identifier", { enumerable: true, get: function () { return identifier_1.Identifier; } });
|
|
133
|
+
Object.defineProperty(exports, "IsIdentifier", { enumerable: true, get: function () { return identifier_1.IsIdentifier; } });
|
|
134
|
+
var infer_1 = require("./type/types/infer");
|
|
135
|
+
Object.defineProperty(exports, "Infer", { enumerable: true, get: function () { return infer_1.Infer; } });
|
|
136
|
+
Object.defineProperty(exports, "IsInfer", { enumerable: true, get: function () { return infer_1.IsInfer; } });
|
|
137
|
+
var integer_1 = require("./type/types/integer");
|
|
138
|
+
Object.defineProperty(exports, "Integer", { enumerable: true, get: function () { return integer_1.Integer; } });
|
|
139
|
+
Object.defineProperty(exports, "IsInteger", { enumerable: true, get: function () { return integer_1.IsInteger; } });
|
|
140
|
+
var intersect_1 = require("./type/types/intersect");
|
|
141
|
+
Object.defineProperty(exports, "Intersect", { enumerable: true, get: function () { return intersect_1.Intersect; } });
|
|
142
|
+
Object.defineProperty(exports, "IsIntersect", { enumerable: true, get: function () { return intersect_1.IsIntersect; } });
|
|
143
|
+
var iterator_1 = require("./type/types/iterator");
|
|
144
|
+
Object.defineProperty(exports, "IsIterator", { enumerable: true, get: function () { return iterator_1.IsIterator; } });
|
|
145
|
+
Object.defineProperty(exports, "Iterator", { enumerable: true, get: function () { return iterator_1.Iterator; } });
|
|
146
|
+
var literal_1 = require("./type/types/literal");
|
|
147
|
+
Object.defineProperty(exports, "IsLiteral", { enumerable: true, get: function () { return literal_1.IsLiteral; } });
|
|
148
|
+
Object.defineProperty(exports, "Literal", { enumerable: true, get: function () { return literal_1.Literal; } });
|
|
149
|
+
var never_1 = require("./type/types/never");
|
|
150
|
+
Object.defineProperty(exports, "IsNever", { enumerable: true, get: function () { return never_1.IsNever; } });
|
|
151
|
+
Object.defineProperty(exports, "Never", { enumerable: true, get: function () { return never_1.Never; } });
|
|
152
|
+
var null_1 = require("./type/types/null");
|
|
153
|
+
Object.defineProperty(exports, "IsNull", { enumerable: true, get: function () { return null_1.IsNull; } });
|
|
154
|
+
Object.defineProperty(exports, "Null", { enumerable: true, get: function () { return null_1.Null; } });
|
|
155
|
+
var number_1 = require("./type/types/number");
|
|
156
|
+
Object.defineProperty(exports, "IsNumber", { enumerable: true, get: function () { return number_1.IsNumber; } });
|
|
157
|
+
Object.defineProperty(exports, "Number", { enumerable: true, get: function () { return number_1.Number; } });
|
|
158
|
+
var object_1 = require("./type/types/object");
|
|
159
|
+
Object.defineProperty(exports, "IsObject", { enumerable: true, get: function () { return object_1.IsObject; } });
|
|
160
|
+
Object.defineProperty(exports, "Object", { enumerable: true, get: function () { return object_1.Object; } });
|
|
161
|
+
var parameter_1 = require("./type/types/parameter");
|
|
162
|
+
Object.defineProperty(exports, "IsParameter", { enumerable: true, get: function () { return parameter_1.IsParameter; } });
|
|
163
|
+
Object.defineProperty(exports, "Parameter", { enumerable: true, get: function () { return parameter_1.Parameter; } });
|
|
164
|
+
var promise_1 = require("./type/types/promise");
|
|
165
|
+
Object.defineProperty(exports, "IsPromise", { enumerable: true, get: function () { return promise_1.IsPromise; } });
|
|
166
|
+
Object.defineProperty(exports, "Promise", { enumerable: true, get: function () { return promise_1.Promise; } });
|
|
167
|
+
var record_1 = require("./type/types/record");
|
|
168
|
+
Object.defineProperty(exports, "IsRecord", { enumerable: true, get: function () { return record_1.IsRecord; } });
|
|
169
|
+
Object.defineProperty(exports, "Record", { enumerable: true, get: function () { return record_1.Record; } });
|
|
170
|
+
Object.defineProperty(exports, "RecordKey", { enumerable: true, get: function () { return record_1.RecordKey; } });
|
|
171
|
+
Object.defineProperty(exports, "RecordKeyAsPattern", { enumerable: true, get: function () { return record_1.RecordPattern; } });
|
|
172
|
+
Object.defineProperty(exports, "RecordValue", { enumerable: true, get: function () { return record_1.RecordValue; } });
|
|
173
|
+
var ref_1 = require("./type/types/ref");
|
|
174
|
+
Object.defineProperty(exports, "IsRef", { enumerable: true, get: function () { return ref_1.IsRef; } });
|
|
175
|
+
Object.defineProperty(exports, "Ref", { enumerable: true, get: function () { return ref_1.Ref; } });
|
|
176
|
+
var rest_1 = require("./type/types/rest");
|
|
177
|
+
Object.defineProperty(exports, "IsRest", { enumerable: true, get: function () { return rest_1.IsRest; } });
|
|
178
|
+
Object.defineProperty(exports, "Rest", { enumerable: true, get: function () { return rest_1.Rest; } });
|
|
179
|
+
var schema_1 = require("./type/types/schema");
|
|
180
|
+
Object.defineProperty(exports, "IsKind", { enumerable: true, get: function () { return schema_1.IsKind; } });
|
|
181
|
+
Object.defineProperty(exports, "IsSchema", { enumerable: true, get: function () { return schema_1.IsSchema; } });
|
|
182
|
+
var string_1 = require("./type/types/string");
|
|
183
|
+
Object.defineProperty(exports, "IsString", { enumerable: true, get: function () { return string_1.IsString; } });
|
|
184
|
+
Object.defineProperty(exports, "String", { enumerable: true, get: function () { return string_1.String; } });
|
|
185
|
+
var symbol_1 = require("./type/types/symbol");
|
|
186
|
+
Object.defineProperty(exports, "IsSymbol", { enumerable: true, get: function () { return symbol_1.IsSymbol; } });
|
|
187
|
+
Object.defineProperty(exports, "Symbol", { enumerable: true, get: function () { return symbol_1.Symbol; } });
|
|
188
|
+
var template_literal_1 = require("./type/types/template-literal");
|
|
189
|
+
Object.defineProperty(exports, "IsTemplateLiteral", { enumerable: true, get: function () { return template_literal_1.IsTemplateLiteral; } });
|
|
190
|
+
Object.defineProperty(exports, "TemplateLiteral", { enumerable: true, get: function () { return template_literal_1.TemplateLiteral; } });
|
|
191
|
+
var this_1 = require("./type/types/this");
|
|
192
|
+
Object.defineProperty(exports, "IsThis", { enumerable: true, get: function () { return this_1.IsThis; } });
|
|
193
|
+
Object.defineProperty(exports, "This", { enumerable: true, get: function () { return this_1.This; } });
|
|
194
|
+
var tuple_1 = require("./type/types/tuple");
|
|
195
|
+
Object.defineProperty(exports, "IsTuple", { enumerable: true, get: function () { return tuple_1.IsTuple; } });
|
|
196
|
+
Object.defineProperty(exports, "Tuple", { enumerable: true, get: function () { return tuple_1.Tuple; } });
|
|
197
|
+
var undefined_1 = require("./type/types/undefined");
|
|
198
|
+
Object.defineProperty(exports, "IsUndefined", { enumerable: true, get: function () { return undefined_1.IsUndefined; } });
|
|
199
|
+
Object.defineProperty(exports, "Undefined", { enumerable: true, get: function () { return undefined_1.Undefined; } });
|
|
200
|
+
var union_1 = require("./type/types/union");
|
|
201
|
+
Object.defineProperty(exports, "IsUnion", { enumerable: true, get: function () { return union_1.IsUnion; } });
|
|
202
|
+
Object.defineProperty(exports, "Union", { enumerable: true, get: function () { return union_1.Union; } });
|
|
203
|
+
var unknown_1 = require("./type/types/unknown");
|
|
204
|
+
Object.defineProperty(exports, "IsUnknown", { enumerable: true, get: function () { return unknown_1.IsUnknown; } });
|
|
205
|
+
Object.defineProperty(exports, "Unknown", { enumerable: true, get: function () { return unknown_1.Unknown; } });
|
|
206
|
+
var unsafe_1 = require("./type/types/unsafe");
|
|
207
|
+
Object.defineProperty(exports, "IsUnsafe", { enumerable: true, get: function () { return unsafe_1.IsUnsafe; } });
|
|
208
|
+
Object.defineProperty(exports, "Unsafe", { enumerable: true, get: function () { return unsafe_1.Unsafe; } });
|
|
209
|
+
var void_1 = require("./type/types/void");
|
|
210
|
+
Object.defineProperty(exports, "IsVoid", { enumerable: true, get: function () { return void_1.IsVoid; } });
|
|
211
|
+
Object.defineProperty(exports, "Void", { enumerable: true, get: function () { return void_1.Void; } });
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import type { TLocalizedValidationError } from '../../error/index';
|
|
2
|
+
import type { Static, TProperties, TSchema } from '../../type/index';
|
|
3
|
+
export declare class AssertError extends Error {
|
|
4
|
+
readonly cause: {
|
|
5
|
+
source: string;
|
|
6
|
+
errors: TLocalizedValidationError[];
|
|
7
|
+
value: unknown;
|
|
8
|
+
};
|
|
9
|
+
constructor(source: string, value: unknown, errors: TLocalizedValidationError[]);
|
|
10
|
+
}
|
|
11
|
+
/** Asserts the a value matches the given type. This function returns a TypeScript type asserts predicate and will throw AssertError if value does not match. */
|
|
12
|
+
export declare function Assert<Context extends TProperties, const Type extends TSchema, Result extends unknown = Static<Type, Context>>(context: Context, type: Type, value: unknown): asserts value is Result;
|
|
13
|
+
/** Asserts the a value matches the given type. This function returns a TypeScript type asserts predicate and will throw AssertError if value does not match. */
|
|
14
|
+
export declare function Assert<const Type extends TSchema, Result extends unknown = Static<Type>>(type: Type, value: unknown): asserts value is Result;
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.AssertError = void 0;
|
|
4
|
+
exports.Assert = Assert;
|
|
5
|
+
const index_1 = require("../../system/arguments/index");
|
|
6
|
+
const index_2 = require("../check/index");
|
|
7
|
+
const index_3 = require("../errors/index");
|
|
8
|
+
// ------------------------------------------------------------------
|
|
9
|
+
// AssertError
|
|
10
|
+
// ------------------------------------------------------------------
|
|
11
|
+
class AssertError extends Error {
|
|
12
|
+
constructor(source, value, errors) {
|
|
13
|
+
super(source);
|
|
14
|
+
Object.defineProperty(this, 'cause', {
|
|
15
|
+
value: { source, errors, value },
|
|
16
|
+
writable: false,
|
|
17
|
+
configurable: false,
|
|
18
|
+
enumerable: false
|
|
19
|
+
});
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
exports.AssertError = AssertError;
|
|
23
|
+
/** Asserts the a value matches the given type. This function returns a TypeScript type asserts predicate and will throw AssertError if value does not match. */
|
|
24
|
+
function Assert(...args) {
|
|
25
|
+
const [context, type, value] = index_1.Arguments.Match(args, {
|
|
26
|
+
3: (context, type, value) => [context, type, value],
|
|
27
|
+
2: (type, value) => [{}, type, value]
|
|
28
|
+
});
|
|
29
|
+
const check = (0, index_2.Check)(context, type, value);
|
|
30
|
+
if (!check)
|
|
31
|
+
throw new AssertError('Assert', value, (0, index_3.Errors)(context, type, value));
|
|
32
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './assert';
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
+
};
|
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
__exportStar(require("./assert"), exports);
|