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,56 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// deno-fmt-ignore-file
|
|
3
|
+
// deno-fmt-ignore-file
|
|
4
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
|
+
exports.Distribute = Distribute;
|
|
6
|
+
const index_1 = require("../../../guard/index");
|
|
7
|
+
const schema_1 = require("../../types/schema");
|
|
8
|
+
const intersect_1 = require("../../types/intersect");
|
|
9
|
+
const union_1 = require("../../types/union");
|
|
10
|
+
const object_1 = require("../../types/object");
|
|
11
|
+
const tuple_1 = require("../../types/tuple");
|
|
12
|
+
const composite_1 = require("./composite");
|
|
13
|
+
const narrow_1 = require("./narrow");
|
|
14
|
+
const evaluate_1 = require("./evaluate");
|
|
15
|
+
const evaluate_2 = require("./evaluate");
|
|
16
|
+
function CanDistribute(type) {
|
|
17
|
+
return (0, object_1.IsObject)(type) || (0, tuple_1.IsTuple)(type);
|
|
18
|
+
}
|
|
19
|
+
function DistributeNormalize(type) {
|
|
20
|
+
return ((0, intersect_1.IsIntersect)(type)
|
|
21
|
+
? (0, evaluate_2.EvaluateIntersect)(type.allOf)
|
|
22
|
+
: type);
|
|
23
|
+
}
|
|
24
|
+
function DistributeOperation(left, right) {
|
|
25
|
+
const normalLeft = DistributeNormalize(left);
|
|
26
|
+
const normalRight = DistributeNormalize(right);
|
|
27
|
+
const isObjectLeft = CanDistribute(normalLeft);
|
|
28
|
+
const IsObjectRight = CanDistribute(normalRight);
|
|
29
|
+
const result = (isObjectLeft && IsObjectRight ? (0, composite_1.Composite)((0, evaluate_1.EvaluateType)(normalLeft), normalRight) :
|
|
30
|
+
isObjectLeft && !IsObjectRight ? (0, evaluate_1.EvaluateType)(normalLeft) :
|
|
31
|
+
!isObjectLeft && IsObjectRight ? normalRight :
|
|
32
|
+
(0, narrow_1.Narrow)((0, evaluate_1.EvaluateType)(normalLeft), normalRight));
|
|
33
|
+
return result;
|
|
34
|
+
}
|
|
35
|
+
function DistributeType(type, types, result = []) {
|
|
36
|
+
const [left, ...right] = types;
|
|
37
|
+
return (!index_1.Guard.IsUndefined(left) // TSchema[]
|
|
38
|
+
? DistributeType(type, right, [...result, DistributeOperation(type, left)])
|
|
39
|
+
: result.length === 0
|
|
40
|
+
? [type]
|
|
41
|
+
: result);
|
|
42
|
+
}
|
|
43
|
+
function DistributeUnion(types, distribution, result = []) {
|
|
44
|
+
const [left, ...right] = types;
|
|
45
|
+
return ((0, schema_1.IsSchema)(left)
|
|
46
|
+
? DistributeUnion(right, distribution, [...result, ...Distribute([left], distribution)])
|
|
47
|
+
: result);
|
|
48
|
+
}
|
|
49
|
+
function Distribute(types, result = []) {
|
|
50
|
+
const [left, ...right] = types;
|
|
51
|
+
return ((0, schema_1.IsSchema)(left)
|
|
52
|
+
? (0, union_1.IsUnion)(left)
|
|
53
|
+
? Distribute(right, DistributeUnion(left.anyOf, result))
|
|
54
|
+
: Distribute(right, DistributeType(left, result))
|
|
55
|
+
: result);
|
|
56
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { type TSchema } from '../../types/schema';
|
|
2
|
+
import { type TIntersect } from '../../types/intersect';
|
|
3
|
+
import { type TUnion } from '../../types/union';
|
|
4
|
+
import { type TDistribute } from './distribute';
|
|
5
|
+
import { type TBroaden } from './broaden';
|
|
6
|
+
export type TEvaluateIntersect<Types extends TSchema[], Distribution extends TSchema[] = TDistribute<Types>, Result extends TSchema = TBroaden<Distribution>> = Result;
|
|
7
|
+
export declare function EvaluateIntersect<Types extends TSchema[]>(types: [...Types]): TEvaluateIntersect<Types>;
|
|
8
|
+
export type TEvaluateUnion<Types extends TSchema[], Result extends TSchema = TBroaden<Types>> = Result;
|
|
9
|
+
export declare function EvaluateUnion<Types extends TSchema[]>(types: [...Types]): TEvaluateUnion<Types>;
|
|
10
|
+
export type TEvaluateType<Type extends TSchema, Result extends TSchema = (Type extends TIntersect<infer Types extends TSchema[]> ? TEvaluateIntersect<Types> : Type extends TUnion<infer Types extends TSchema[]> ? TEvaluateUnion<Types> : Type)> = Result;
|
|
11
|
+
export declare function EvaluateType<Type extends TSchema>(type: Type): TEvaluateType<Type>;
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// deno-fmt-ignore-file
|
|
3
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
4
|
+
exports.EvaluateIntersect = EvaluateIntersect;
|
|
5
|
+
exports.EvaluateUnion = EvaluateUnion;
|
|
6
|
+
exports.EvaluateType = EvaluateType;
|
|
7
|
+
const intersect_1 = require("../../types/intersect");
|
|
8
|
+
const union_1 = require("../../types/union");
|
|
9
|
+
const distribute_1 = require("./distribute");
|
|
10
|
+
const broaden_1 = require("./broaden");
|
|
11
|
+
function EvaluateIntersect(types) {
|
|
12
|
+
const distribution = (0, distribute_1.Distribute)(types);
|
|
13
|
+
const result = (0, broaden_1.Broaden)(distribution);
|
|
14
|
+
return result;
|
|
15
|
+
}
|
|
16
|
+
function EvaluateUnion(types) {
|
|
17
|
+
const result = (0, broaden_1.Broaden)(types);
|
|
18
|
+
return result;
|
|
19
|
+
}
|
|
20
|
+
function EvaluateType(type) {
|
|
21
|
+
return ((0, intersect_1.IsIntersect)(type) ? EvaluateIntersect(type.allOf) :
|
|
22
|
+
(0, union_1.IsUnion)(type) ? EvaluateUnion(type.anyOf) :
|
|
23
|
+
type);
|
|
24
|
+
}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { TSchema } from '../../types/schema';
|
|
2
|
+
import { type TUnion } from '../../types/union';
|
|
3
|
+
type TFlattenType<Type extends TSchema, Result extends TSchema[] = Type extends TUnion<infer Types extends TSchema[]> ? TFlatten<Types> : [Type]> = Result;
|
|
4
|
+
export type TFlatten<Types extends TSchema[], Result extends TSchema[] = []> = (Types extends [infer Left extends TSchema, ...infer Right extends TSchema[]] ? TFlatten<Right, [...Result, ...TFlattenType<Left>]> : Result);
|
|
5
|
+
export declare function Flatten<Types extends TSchema[]>(types: [...Types]): TFlatten<Types>;
|
|
6
|
+
export {};
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// deno-fmt-ignore-file
|
|
3
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
4
|
+
exports.Flatten = Flatten;
|
|
5
|
+
const union_1 = require("../../types/union");
|
|
6
|
+
function FlattenType(type) {
|
|
7
|
+
const result = (0, union_1.IsUnion)(type) ? Flatten(type.anyOf) : [type];
|
|
8
|
+
return result;
|
|
9
|
+
}
|
|
10
|
+
function Flatten(types) {
|
|
11
|
+
return types.reduce((result, type) => {
|
|
12
|
+
return [...result, ...FlattenType(type)];
|
|
13
|
+
}, []);
|
|
14
|
+
}
|
|
@@ -0,0 +1,24 @@
|
|
|
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("./broaden"), exports);
|
|
18
|
+
__exportStar(require("./compare"), exports);
|
|
19
|
+
__exportStar(require("./composite"), exports);
|
|
20
|
+
__exportStar(require("./distribute"), exports);
|
|
21
|
+
__exportStar(require("./evaluate"), exports);
|
|
22
|
+
__exportStar(require("./flatten"), exports);
|
|
23
|
+
__exportStar(require("./instantiate"), exports);
|
|
24
|
+
__exportStar(require("./narrow"), exports);
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { type TSchema, type TSchemaOptions } from '../../types/schema';
|
|
2
|
+
import { type TProperties } from '../../types/properties';
|
|
3
|
+
import { type TState, type TInstantiateType } from '../instantiate';
|
|
4
|
+
import { type TEvaluateType } from './evaluate';
|
|
5
|
+
type TEvaluateImmediate<Context extends TProperties, State extends TState, Type extends TSchema, InstantiatedType extends TSchema = TInstantiateType<Context, State, Type>> = TEvaluateType<InstantiatedType>;
|
|
6
|
+
export type TEvaluateInstantiate<Context extends TProperties, State extends TState, Type extends TSchema> = TEvaluateImmediate<Context, State, Type>;
|
|
7
|
+
export declare function EvaluateInstantiate<Context extends TProperties, State extends TState, Type extends TSchema>(context: Context, state: State, type: Type, options: TSchemaOptions): TEvaluateInstantiate<Context, State, Type>;
|
|
8
|
+
export {};
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// deno-fmt-ignore-file
|
|
3
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
4
|
+
exports.EvaluateInstantiate = EvaluateInstantiate;
|
|
5
|
+
const index_1 = require("../../../system/memory/index");
|
|
6
|
+
const instantiate_1 = require("../instantiate");
|
|
7
|
+
const evaluate_1 = require("./evaluate");
|
|
8
|
+
function EvaluateImmediate(context, state, type, options) {
|
|
9
|
+
const instantiatedType = (0, instantiate_1.InstantiateType)(context, state, type);
|
|
10
|
+
return index_1.Memory.Update((0, evaluate_1.EvaluateType)(instantiatedType), {}, options);
|
|
11
|
+
}
|
|
12
|
+
function EvaluateInstantiate(context, state, type, options) {
|
|
13
|
+
return (
|
|
14
|
+
// [instantiation-rule]
|
|
15
|
+
//
|
|
16
|
+
// Evaluate instantiation should never defer on instantiate as the caller is specifically
|
|
17
|
+
// requesting that the type be evaluated in whatever context is available. However, actions
|
|
18
|
+
// embedded in the Evaluate call may defer local to themselves.
|
|
19
|
+
EvaluateImmediate(context, state, type, options));
|
|
20
|
+
}
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import { TSchema } from '../../types/schema';
|
|
2
|
+
import { TNever } from "../../types/never";
|
|
3
|
+
import { TCompare, TCompareResult, ResultLeftInside, ResultRightInside, ResultEqual } from "./compare";
|
|
4
|
+
export type TNarrow<Left extends TSchema, Right extends TSchema, Result extends TCompareResult = TCompare<Left, Right>> = (Result extends typeof ResultLeftInside ? Left : Result extends typeof ResultRightInside ? Right : Result extends typeof ResultEqual ? Right : TNever);
|
|
5
|
+
export declare function Narrow<Left extends TSchema, Right extends TSchema>(left: Left, right: Right): TNarrow<Left, Right>;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// deno-fmt-ignore-file
|
|
3
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
4
|
+
exports.Narrow = Narrow;
|
|
5
|
+
const index_1 = require("../../../guard/index");
|
|
6
|
+
const never_1 = require("../../types/never");
|
|
7
|
+
const compare_1 = require("./compare");
|
|
8
|
+
function Narrow(left, right) {
|
|
9
|
+
const result = (0, compare_1.Compare)(left, right);
|
|
10
|
+
return (index_1.Guard.IsEqual(result, compare_1.ResultLeftInside) ? left :
|
|
11
|
+
index_1.Guard.IsEqual(result, compare_1.ResultRightInside) ? right :
|
|
12
|
+
index_1.Guard.IsEqual(result, compare_1.ResultEqual) ? right :
|
|
13
|
+
(0, never_1.Never)());
|
|
14
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './instantiate';
|
|
@@ -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("./instantiate"), exports);
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { type TSchema, type TSchemaOptions } from '../../types/schema';
|
|
2
|
+
import { type TProperties } from '../../types/properties';
|
|
3
|
+
import { type TEnum, type TEnumValue } from '../../types/enum';
|
|
4
|
+
import { type TUnion } from '../../types/union';
|
|
5
|
+
import { type TExtends, ExtendsResult } from '../../extends/index';
|
|
6
|
+
import { type TEnumValuesToVariants } from '../enum/index';
|
|
7
|
+
import { type TEvaluateUnion, type TFlatten } from '../evaluate/index';
|
|
8
|
+
import { type TState, type TInstantiateType, type TCanInstantiate } from '../instantiate';
|
|
9
|
+
import { type TExcludeDeferred } from '../../action/exclude';
|
|
10
|
+
type TExcludeUnion<Types extends TSchema[], Right extends TSchema, Result extends TSchema[] = []> = (Types extends [infer Head extends TSchema, ...infer Tail extends TSchema[]] ? TExcludeUnion<Tail, Right, [...Result, ...TExcludeType<Head, Right>]> : Result);
|
|
11
|
+
type TExcludeType<Left extends TSchema, Right extends TSchema, Check extends ExtendsResult.TResult = TExtends<{}, Left, Right>, Result extends TSchema[] = Check extends ExtendsResult.TExtendsTrueLike<infer _> ? [] : [Left]> = Result;
|
|
12
|
+
type TExcludeAction<Left extends TSchema, Right extends TSchema, Remaining extends TSchema[] = (Left extends TEnum<infer Values extends TEnumValue[]> ? TExcludeUnion<TEnumValuesToVariants<Values>, Right> : Left extends TUnion<infer Types extends TSchema[]> ? TExcludeUnion<TFlatten<Types>, Right> : TExcludeType<Left, Right>), Result extends TSchema = TEvaluateUnion<Remaining>> = Result;
|
|
13
|
+
type TExcludeImmediate<Context extends TProperties, State extends TState, Left extends TSchema, Right extends TSchema, InstantiatedLeft extends TSchema = TInstantiateType<Context, State, Left>, InstantiatedRight extends TSchema = TInstantiateType<Context, State, Right>> = TExcludeAction<InstantiatedLeft, InstantiatedRight>;
|
|
14
|
+
export type TExcludeInstantiate<Context extends TProperties, State extends TState, Left extends TSchema, Right extends TSchema> = TCanInstantiate<Context, [Left, Right]> extends true ? TExcludeImmediate<Context, State, Left, Right> : TExcludeDeferred<Left, Right>;
|
|
15
|
+
export declare function ExcludeInstantiate<Context extends TProperties, State extends TState, Left extends TSchema, Right extends TSchema>(context: Context, state: State, left: Left, right: Right, options: TSchemaOptions): TExcludeInstantiate<Context, State, Left, Right>;
|
|
16
|
+
export {};
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// deno-fmt-ignore-file
|
|
3
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
4
|
+
exports.ExcludeInstantiate = ExcludeInstantiate;
|
|
5
|
+
const index_1 = require("../../../system/memory/index");
|
|
6
|
+
const enum_1 = require("../../types/enum");
|
|
7
|
+
const union_1 = require("../../types/union");
|
|
8
|
+
const index_2 = require("../../extends/index");
|
|
9
|
+
const index_3 = require("../enum/index");
|
|
10
|
+
const index_4 = require("../evaluate/index");
|
|
11
|
+
const instantiate_1 = require("../instantiate");
|
|
12
|
+
const exclude_1 = require("../../action/exclude");
|
|
13
|
+
function ExcludeUnion(types, right) {
|
|
14
|
+
return types.reduce((result, head) => {
|
|
15
|
+
return [...result, ...ExcludeType(head, right)];
|
|
16
|
+
}, []);
|
|
17
|
+
}
|
|
18
|
+
function ExcludeType(left, right) {
|
|
19
|
+
const check = (0, index_2.Extends)({}, left, right);
|
|
20
|
+
const result = index_2.ExtendsResult.IsExtendsTrueLike(check) ? [] : [left];
|
|
21
|
+
return result;
|
|
22
|
+
}
|
|
23
|
+
function ExcludeAction(left, right) {
|
|
24
|
+
const remaining = ((0, enum_1.IsEnum)(left) ? ExcludeUnion((0, index_3.EnumValuesToVariants)(left.enum), right) :
|
|
25
|
+
(0, union_1.IsUnion)(left) ? ExcludeUnion((0, index_4.Flatten)(left.anyOf), right) :
|
|
26
|
+
ExcludeType(left, right));
|
|
27
|
+
const result = (0, index_4.EvaluateUnion)(remaining);
|
|
28
|
+
return result;
|
|
29
|
+
}
|
|
30
|
+
function ExcludeImmediate(context, state, left, right, options) {
|
|
31
|
+
const instantiatedLeft = (0, instantiate_1.InstantiateType)(context, state, left);
|
|
32
|
+
const instantiatedRight = (0, instantiate_1.InstantiateType)(context, state, right);
|
|
33
|
+
return index_1.Memory.Update(ExcludeAction(instantiatedLeft, instantiatedRight), {}, options);
|
|
34
|
+
}
|
|
35
|
+
function ExcludeInstantiate(context, state, left, right, options) {
|
|
36
|
+
return ((0, instantiate_1.CanInstantiate)(context, [left, right])
|
|
37
|
+
? ExcludeImmediate(context, state, left, right, options)
|
|
38
|
+
: (0, exclude_1.ExcludeDeferred)(left, right, options));
|
|
39
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './instantiate';
|
|
@@ -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("./instantiate"), exports);
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { type TSchema, type TSchemaOptions } from '../../types/schema';
|
|
2
|
+
import { type TProperties } from '../../types/properties';
|
|
3
|
+
import { type TEnum, type TEnumValue } from '../../types/enum';
|
|
4
|
+
import { type TUnion } from '../../types/union';
|
|
5
|
+
import { type TExtends, ExtendsResult } from '../../extends/index';
|
|
6
|
+
import { type TEnumValuesToVariants } from '../enum/index';
|
|
7
|
+
import { type TEvaluateUnion, type TFlatten } from '../evaluate/index';
|
|
8
|
+
import { type TState, type TInstantiateType, type TCanInstantiate } from '../instantiate';
|
|
9
|
+
import { type TExtractDeferred } from '../../action/extract';
|
|
10
|
+
type TExtractUnion<Types extends TSchema[], Right extends TSchema, Result extends TSchema[] = []> = (Types extends [infer Head extends TSchema, ...infer Tail extends TSchema[]] ? TExtractUnion<Tail, Right, [...Result, ...TExtractType<Head, Right>]> : Result);
|
|
11
|
+
type TExtractType<Left extends TSchema, Right extends TSchema, Check extends ExtendsResult.TResult = TExtends<{}, Left, Right>, Result extends TSchema[] = Check extends ExtendsResult.TExtendsTrueLike<infer _> ? [Left] : []> = Result;
|
|
12
|
+
type TExtractAction<Left extends TSchema, Right extends TSchema, Remaining extends TSchema[] = (Left extends TEnum<infer Values extends TEnumValue[]> ? TExtractUnion<TEnumValuesToVariants<Values>, Right> : Left extends TUnion<infer Types extends TSchema[]> ? TExtractUnion<TFlatten<Types>, Right> : TExtractType<Left, Right>), Result extends TSchema = TEvaluateUnion<Remaining>> = Result;
|
|
13
|
+
type TExtractImmediate<Context extends TProperties, State extends TState, Left extends TSchema, Right extends TSchema, InstantiatedLeft extends TSchema = TInstantiateType<Context, State, Left>, InstantiatedRight extends TSchema = TInstantiateType<Context, State, Right>> = TExtractAction<InstantiatedLeft, InstantiatedRight>;
|
|
14
|
+
export type TExtractInstantiate<Context extends TProperties, State extends TState, Left extends TSchema, Right extends TSchema> = TCanInstantiate<Context, [Left, Right]> extends true ? TExtractImmediate<Context, State, Left, Right> : TExtractDeferred<Left, Right>;
|
|
15
|
+
export declare function ExtractInstantiate<Context extends TProperties, State extends TState, Left extends TSchema, Right extends TSchema>(context: Context, state: State, left: Left, right: Right, options: TSchemaOptions): TExtractInstantiate<Context, State, Left, Right>;
|
|
16
|
+
export {};
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// deno-fmt-ignore-file
|
|
3
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
4
|
+
exports.ExtractInstantiate = ExtractInstantiate;
|
|
5
|
+
const index_1 = require("../../../system/memory/index");
|
|
6
|
+
const enum_1 = require("../../types/enum");
|
|
7
|
+
const union_1 = require("../../types/union");
|
|
8
|
+
const index_2 = require("../../extends/index");
|
|
9
|
+
const index_3 = require("../enum/index");
|
|
10
|
+
const index_4 = require("../evaluate/index");
|
|
11
|
+
const instantiate_1 = require("../instantiate");
|
|
12
|
+
const extract_1 = require("../../action/extract");
|
|
13
|
+
function ExtractUnion(types, right) {
|
|
14
|
+
return types.reduce((result, head) => {
|
|
15
|
+
return [...result, ...ExtractType(head, right)];
|
|
16
|
+
}, []);
|
|
17
|
+
}
|
|
18
|
+
function ExtractType(left, right) {
|
|
19
|
+
const check = (0, index_2.Extends)({}, left, right);
|
|
20
|
+
const result = index_2.ExtendsResult.IsExtendsTrueLike(check) ? [left] : [];
|
|
21
|
+
return result;
|
|
22
|
+
}
|
|
23
|
+
function ExtractAction(left, right) {
|
|
24
|
+
const remaining = ((0, enum_1.IsEnum)(left) ? ExtractUnion((0, index_3.EnumValuesToVariants)(left.enum), right) :
|
|
25
|
+
(0, union_1.IsUnion)(left) ? ExtractUnion((0, index_4.Flatten)(left.anyOf), right) :
|
|
26
|
+
ExtractType(left, right));
|
|
27
|
+
const result = (0, index_4.EvaluateUnion)(remaining);
|
|
28
|
+
return result;
|
|
29
|
+
}
|
|
30
|
+
function ExtractImmediate(context, state, left, right, options) {
|
|
31
|
+
const instantiatedLeft = (0, instantiate_1.InstantiateType)(context, state, left);
|
|
32
|
+
const instantiatedRight = (0, instantiate_1.InstantiateType)(context, state, right);
|
|
33
|
+
return index_1.Memory.Update(ExtractAction(instantiatedLeft, instantiatedRight), {}, options);
|
|
34
|
+
}
|
|
35
|
+
function ExtractInstantiate(context, state, left, right, options) {
|
|
36
|
+
return ((0, instantiate_1.CanInstantiate)(context, [left, right])
|
|
37
|
+
? ExtractImmediate(context, state, left, right, options)
|
|
38
|
+
: (0, extract_1.ExtractDeferred)(left, right, options));
|
|
39
|
+
}
|
|
@@ -0,0 +1,19 @@
|
|
|
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("./keys-to-indexer"), exports);
|
|
18
|
+
__exportStar(require("./keys"), exports);
|
|
19
|
+
__exportStar(require("./union"), exports);
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { type TSchema } from '../../types/schema';
|
|
2
|
+
import { type TLiteral, type TLiteralValue } from '../../types/literal';
|
|
3
|
+
import { type TUnion } from '../../types/union';
|
|
4
|
+
type TKeysToLiterals<Keys extends PropertyKey[], Result extends TLiteral[] = []> = (Keys extends [infer Left extends PropertyKey, ...infer Right extends PropertyKey[]] ? (Left extends TLiteralValue ? TKeysToLiterals<Right, [...Result, TLiteral<Left>]> : TKeysToLiterals<Right, Result>) : Result);
|
|
5
|
+
export type TKeysToIndexer<Keys extends PropertyKey[], Literals extends TLiteral[] = TKeysToLiterals<Keys>, Result extends TSchema = TUnion<Literals>> = Result;
|
|
6
|
+
export declare function KeysToIndexer<Keys extends PropertyKey[]>(keys: [...Keys]): TKeysToIndexer<Keys>;
|
|
7
|
+
export {};
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// deno-fmt-ignore-file
|
|
3
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
4
|
+
exports.KeysToIndexer = KeysToIndexer;
|
|
5
|
+
const literal_1 = require("../../types/literal");
|
|
6
|
+
const union_1 = require("../../types/union");
|
|
7
|
+
function KeysToLiterals(keys) {
|
|
8
|
+
return keys.reduce((result, left) => {
|
|
9
|
+
return (0, literal_1.IsLiteralValue)(left)
|
|
10
|
+
? [...result, (0, literal_1.Literal)(left)]
|
|
11
|
+
: result;
|
|
12
|
+
}, []);
|
|
13
|
+
}
|
|
14
|
+
function KeysToIndexer(keys) {
|
|
15
|
+
const literals = KeysToLiterals(keys);
|
|
16
|
+
const result = (0, union_1.Union)(literals);
|
|
17
|
+
return result;
|
|
18
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import { type TLiteralValue } from '../../types/literal';
|
|
2
|
+
export type TConvertToIntegerKey<Value extends TLiteralValue, Normal extends string = `${Value}`, Result extends TLiteralValue = (Normal extends ` ${infer _ extends number}` ? Normal : Normal extends `${infer _ extends number} ` ? Normal : Normal extends `0${infer _ extends number}` ? Normal : Normal extends `-${infer _ extends number}` ? Normal : Normal extends `${infer Value extends number}` ? Value : Value)> = Result;
|
|
3
|
+
export declare function ConvertToIntegerKey<Value extends TLiteralValue>(value: Value): TConvertToIntegerKey<Value>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// deno-fmt-ignore-file
|
|
3
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
4
|
+
exports.ConvertToIntegerKey = ConvertToIntegerKey;
|
|
5
|
+
const integerKeyPattern = new RegExp('^(?:0|[1-9][0-9]*)$');
|
|
6
|
+
function ConvertToIntegerKey(value) {
|
|
7
|
+
const normal = `${value}`;
|
|
8
|
+
return (integerKeyPattern.test(normal)
|
|
9
|
+
? parseInt(normal)
|
|
10
|
+
: value);
|
|
11
|
+
}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
export { Instantiate, type TInstantiate } from './instantiate';
|
|
2
|
+
export * from './awaited/index';
|
|
3
|
+
export * from './conditional/index';
|
|
4
|
+
export * from './constructor-parameters/index';
|
|
5
|
+
export * from './cyclic/index';
|
|
6
|
+
export * from './enum/index';
|
|
7
|
+
export * from './evaluate/index';
|
|
8
|
+
export * from './exclude/index';
|
|
9
|
+
export * from './extract/index';
|
|
10
|
+
export * from './helpers/index';
|
|
11
|
+
export * from './indexed/index';
|
|
12
|
+
export * from './instance-type/index';
|
|
13
|
+
export * from './interface/index';
|
|
14
|
+
export * from './intrinsics/index';
|
|
15
|
+
export * from './keyof/index';
|
|
16
|
+
export * from './mapped/index';
|
|
17
|
+
export * from './module/index';
|
|
18
|
+
export * from './non-nullable/index';
|
|
19
|
+
export * from './object/index';
|
|
20
|
+
export * from './omit/index';
|
|
21
|
+
export * from './options/index';
|
|
22
|
+
export * from './parameters/index';
|
|
23
|
+
export * from './patterns/index';
|
|
24
|
+
export * from './partial/index';
|
|
25
|
+
export * from './pick/index';
|
|
26
|
+
export * from './record/index';
|
|
27
|
+
export * from './ref/index';
|
|
28
|
+
export * from './required/index';
|
|
29
|
+
export * from './return-type/index';
|
|
30
|
+
export * from './template-literal/index';
|
|
@@ -0,0 +1,54 @@
|
|
|
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
|
+
exports.Instantiate = void 0;
|
|
18
|
+
// ------------------------------------------------------------------
|
|
19
|
+
// Engine: Public
|
|
20
|
+
// ------------------------------------------------------------------
|
|
21
|
+
var instantiate_1 = require("./instantiate");
|
|
22
|
+
Object.defineProperty(exports, "Instantiate", { enumerable: true, get: function () { return instantiate_1.Instantiate; } });
|
|
23
|
+
// ------------------------------------------------------------------
|
|
24
|
+
// Engine: Internals
|
|
25
|
+
// ------------------------------------------------------------------
|
|
26
|
+
__exportStar(require("./awaited/index"), exports);
|
|
27
|
+
__exportStar(require("./conditional/index"), exports);
|
|
28
|
+
__exportStar(require("./constructor-parameters/index"), exports);
|
|
29
|
+
__exportStar(require("./cyclic/index"), exports);
|
|
30
|
+
__exportStar(require("./enum/index"), exports);
|
|
31
|
+
__exportStar(require("./evaluate/index"), exports);
|
|
32
|
+
__exportStar(require("./exclude/index"), exports);
|
|
33
|
+
__exportStar(require("./extract/index"), exports);
|
|
34
|
+
__exportStar(require("./helpers/index"), exports);
|
|
35
|
+
__exportStar(require("./indexed/index"), exports);
|
|
36
|
+
__exportStar(require("./instance-type/index"), exports);
|
|
37
|
+
__exportStar(require("./interface/index"), exports);
|
|
38
|
+
__exportStar(require("./intrinsics/index"), exports);
|
|
39
|
+
__exportStar(require("./keyof/index"), exports);
|
|
40
|
+
__exportStar(require("./mapped/index"), exports);
|
|
41
|
+
__exportStar(require("./module/index"), exports);
|
|
42
|
+
__exportStar(require("./non-nullable/index"), exports);
|
|
43
|
+
__exportStar(require("./object/index"), exports);
|
|
44
|
+
__exportStar(require("./omit/index"), exports);
|
|
45
|
+
__exportStar(require("./options/index"), exports);
|
|
46
|
+
__exportStar(require("./parameters/index"), exports);
|
|
47
|
+
__exportStar(require("./patterns/index"), exports);
|
|
48
|
+
__exportStar(require("./partial/index"), exports);
|
|
49
|
+
__exportStar(require("./pick/index"), exports);
|
|
50
|
+
__exportStar(require("./record/index"), exports);
|
|
51
|
+
__exportStar(require("./ref/index"), exports);
|
|
52
|
+
__exportStar(require("./required/index"), exports);
|
|
53
|
+
__exportStar(require("./return-type/index"), exports);
|
|
54
|
+
__exportStar(require("./template-literal/index"), exports);
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { type TSchema } from '../../types/schema';
|
|
2
|
+
import { type TProperties } from '../../types/properties';
|
|
3
|
+
import { type TFromType } from './from-type';
|
|
4
|
+
import { type TCyclicTarget } from '../cyclic/target';
|
|
5
|
+
export type TFromCyclic<Defs extends TProperties, Ref extends string, Target extends TSchema = TCyclicTarget<Defs, Ref>, Result extends string[] = TFromType<Target>> = Result;
|
|
6
|
+
export declare function FromCyclic<Defs extends TProperties, Ref extends string>(defs: Defs, ref: Ref): TFromCyclic<Defs, Ref>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// deno-fmt-ignore-file
|
|
3
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
4
|
+
exports.FromCyclic = FromCyclic;
|
|
5
|
+
const from_type_1 = require("./from-type");
|
|
6
|
+
const target_1 = require("../cyclic/target");
|
|
7
|
+
function FromCyclic(defs, ref) {
|
|
8
|
+
const target = (0, target_1.CyclicTarget)(defs, ref);
|
|
9
|
+
const result = (0, from_type_1.FromType)(target);
|
|
10
|
+
return result;
|
|
11
|
+
}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { type TSchema } from '../../types/schema';
|
|
2
|
+
import { type TEnumValue } from '../../types/enum';
|
|
3
|
+
import { type TEnumValuesToVariants } from '../enum/enum-to-union';
|
|
4
|
+
import { type TFromUnion } from './from-union';
|
|
5
|
+
export type TFromEnum<Values extends TEnumValue[], Variants extends TSchema[] = TEnumValuesToVariants<Values>, Result extends string[] = TFromUnion<Variants>> = Result;
|
|
6
|
+
export declare function FromEnum<Values extends TEnumValue[]>(values: [...Values]): TFromEnum<Values>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// deno-fmt-ignore-file
|
|
3
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
4
|
+
exports.FromEnum = FromEnum;
|
|
5
|
+
const enum_to_union_1 = require("../enum/enum-to-union");
|
|
6
|
+
const from_union_1 = require("./from-union");
|
|
7
|
+
function FromEnum(values) {
|
|
8
|
+
const variants = (0, enum_to_union_1.EnumValuesToVariants)(values);
|
|
9
|
+
const result = (0, from_union_1.FromUnion)(variants);
|
|
10
|
+
return result;
|
|
11
|
+
}
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import { type TSchema } from '../../types/schema';
|
|
2
|
+
import { type TEvaluateIntersect } from '../evaluate/evaluate';
|
|
3
|
+
import { type TFromType } from './from-type';
|
|
4
|
+
export type TFromIntersect<Types extends TSchema[], Evaluated extends TSchema = TEvaluateIntersect<Types>, Result extends string[] = TFromType<Evaluated>> = Result;
|
|
5
|
+
export declare function FromIntersect<Types extends TSchema[]>(types: [...Types]): TFromIntersect<Types>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// deno-fmt-ignore-file
|
|
3
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
4
|
+
exports.FromIntersect = FromIntersect;
|
|
5
|
+
const evaluate_1 = require("../evaluate/evaluate");
|
|
6
|
+
const from_type_1 = require("./from-type");
|
|
7
|
+
function FromIntersect(types) {
|
|
8
|
+
const evaluated = (0, evaluate_1.EvaluateIntersect)(types);
|
|
9
|
+
const result = (0, from_type_1.FromType)(evaluated);
|
|
10
|
+
return result;
|
|
11
|
+
}
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import { type TSchema } from '../../types/schema';
|
|
2
|
+
import { type TTemplateLiteralDecode } from '../template-literal/decode';
|
|
3
|
+
import { type TFromType } from './from-type';
|
|
4
|
+
export type TFromTemplateLiteral<Pattern extends string, Decoded extends TSchema = TTemplateLiteralDecode<Pattern>, Result extends string[] = TFromType<Decoded>> = Result;
|
|
5
|
+
export declare function FromTemplateLiteral<Pattern extends string>(pattern: Pattern): TFromTemplateLiteral<Pattern>;
|