inferred-types 0.53.10 → 0.53.11

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.
@@ -14029,6 +14029,14 @@ type IterateOverDefinitions$1<T extends readonly unknown[], TElse> = {
14029
14029
  [K in keyof T]: ToType$1$1<T[K], TElse>;
14030
14030
  };
14031
14031
  type TypeDefinition$1 = NarrowableScalar$1 | ShapeCallback$1;
14032
+ type _FromDefineObject$1<T extends Required<DefineObject$1>> = {
14033
+ [K in keyof T]: T[K] extends SimpleToken$1 ? SimpleType$1<T[K]> : T[K] extends ShapeCallback$1 ? ReturnType<HandleDoneFn$1<T[K]>> : never;
14034
+ };
14035
+ /**
14036
+ * Converts a `DefineObject` definition into the type that it is
14037
+ * defining.
14038
+ */
14039
+ type FromDefineObject$1<T extends DefineObject$1> = MakeKeysOptional$1<_FromDefineObject$1<Required<T>>, UnionToTuple$1$1<OptionalKeys$1<T>> extends readonly ObjectKey$1[] ? UnionToTuple$1$1<OptionalKeys$1<T>> : never>;
14032
14040
  /**
14033
14041
  * **FromDefn**`<T, [TElse]>`
14034
14042
  *
@@ -14044,9 +14052,7 @@ type TypeDefinition$1 = NarrowableScalar$1 | ShapeCallback$1;
14044
14052
  * Note: when dictionary objects are found the _values_ will be
14045
14053
  * interrogated for ShapeCallback's.
14046
14054
  */
14047
- type FromDefn$1<T, TElse = Constant$1<"not-set">> = T extends DefineObject$1 ? {
14048
- [K in keyof T]: T[K] extends SimpleToken$1 ? SimpleType$1<T[K]> : T[K] extends ShapeCallback$1 ? HandleDoneFn$1<T[K]> : never;
14049
- } : T extends readonly unknown[] ? IterateOverDefinitions$1<T, TElse> : ToType$1$1<T, TElse>;
14055
+ type FromDefn$1<T, TElse = Constant$1<"not-set">> = T extends DefineObject$1 ? FromDefineObject$1<T> : T extends readonly unknown[] ? IterateOverDefinitions$1<T, TElse> : ToType$1$1<T, TElse>;
14050
14056
 
14051
14057
  type WideTokenNames$1 = "string" | "number" | "boolean" | "null" | "undefined" | "never" | "unknown" | "string[]" | "number[]" | "boolean[]" | "unknown[]";
14052
14058
  type ConvertWideTokenNames$1<T extends WideTokenNames$1> = T extends "string" ? string : T extends "number" ? number : T extends "boolean" ? boolean : T extends "null" ? null : T extends "undefined" ? undefined : T extends "never" ? never : T extends "unknown" ? unknown : T extends "string[]" ? string[] : T extends "number[]" ? number[] : T extends "boolean[]" ? boolean[] : T extends "unknown[]" ? unknown[] : never;
@@ -14374,6 +14380,48 @@ type Process$e$1<TObj extends Dictionary$1, TKeys extends ObjectKey$1> = [] exte
14374
14380
  */
14375
14381
  type WithoutKeys$1<TObj extends Dictionary$1, TKeys extends ObjectKey$1 | readonly ObjectKey$1[]> = TKeys extends readonly ObjectKey$1[] ? Process$e$1<TObj, TupleToUnion$1<TKeys>> : ExpandDictionary$1<Process$e$1<TObj, TKeys extends readonly ObjectKey$1[] ? TupleToUnion$1<TKeys> : TKeys>>;
14376
14382
 
14383
+ type ProcessTupleKeys$1<TObj extends AnyObject$1, TKeys extends readonly ObjectKey$1[]> = ExpandDictionary$1<WithoutKeys$1<TObj, TKeys> & {
14384
+ [K in keyof WithKeys$1<TObj, TKeys>]?: K extends keyof TObj ? TObj[K] : never;
14385
+ }>;
14386
+ type ProcessUnionKeys$1<TObj extends AnyObject$1, TKeys extends (string | symbol)> = ExpandDictionary$1<WithoutKeys$1<TObj, TKeys> & {
14387
+ [K in keyof WithKeys$1<TObj, TKeys>]?: K extends keyof TObj ? TObj[K] : never;
14388
+ }>;
14389
+ /**
14390
+ * **MakeKeysOptional**`<TObj, TKeys>`
14391
+ *
14392
+ * Makes a set of keys on a known object `TObj` become
14393
+ * _optional_ parameters while leaving the other properties
14394
+ * "as is".
14395
+ *
14396
+ * **Related:** `MakeKeysRequired`
14397
+ */
14398
+ type MakeKeysOptional$1<TObj extends AnyObject$1, TKeys extends (string | symbol) | readonly ObjectKey$1[]> = IsWideContainer$1<TObj> extends true ? TObj : TKeys extends readonly ObjectKey$1[] ? ProcessTupleKeys$1<TObj, TKeys> : TKeys extends (string | symbol) ? IsWideUnion$1<TKeys> extends true ? never : ProcessUnionKeys$1<TObj, TKeys> : never;
14399
+
14400
+ /**
14401
+ * **OptionalKeys**`<T,[V]>`
14402
+ *
14403
+ * Provides a union type of the _keys_ in `T` which are
14404
+ * **optional** properties.
14405
+ *
14406
+ * **Note:** you also may optionally filter further by specifying a value
14407
+ * by the _value_ of the key and then only keys which are required AND
14408
+ * who extend `V` will be included in the union.
14409
+ *
14410
+ * **Related:** `OptionalKeys`, `RequiredProps` * Provides a union type of the _keys_ in `T` which are
14411
+ * **required** properties.
14412
+ *
14413
+ * **Note:** you also may optionally filter further by specifying a value
14414
+ * by the _value_ of the key and then only keys which are required AND
14415
+ * who extend `V` will be included in the union.
14416
+ *
14417
+ * **Related:** `RequiredKeys`, `RequiredProps`
14418
+ */
14419
+ type OptionalKeys$1<T extends AnyObject$1, V = Unset$1> = {
14420
+ [K in keyof T]-?: EmptyObject$1 extends {
14421
+ [P in K]: T[K];
14422
+ } ? If$1<IsEqual$1<V, Unset$1>, K, K extends V ? K : never> : never;
14423
+ }[keyof T];
14424
+
14377
14425
  /**
14378
14426
  * **CombinedKeys**`<A,B>`
14379
14427
  *
@@ -14880,7 +14928,9 @@ type TypeTuple$1<TType extends Narrowable$1 = Narrowable$1, TDesc extends string
14880
14928
  *
14881
14929
  * - typically used though a function of type `DefineObjectApi`
14882
14930
  */
14883
- type DefineObject$1 = Record<string, SimpleToken$1 | ShapeCallback$1>;
14931
+ interface DefineObject$1 {
14932
+ [key: string]: SimpleToken$1 | ShapeCallback$1;
14933
+ }
14884
14934
 
14885
14935
  type BuildObj$1<T extends readonly string[] | Dictionary$1 | [Dictionary$1], TType> = T extends Dictionary$1 ? T : T extends [Dictionary$1] ? T[0] : T extends string[] ? CreateKV$1<T, TType> : never;
14886
14936
  /**
@@ -15438,6 +15488,7 @@ declare function getYesterday(): Iso8601Date$1<"explicit">;
15438
15488
  */
15439
15489
  declare function isLeapYear(val: NumberLike$1 | Record<string, any> | Date | number): boolean;
15440
15490
 
15491
+ type Returns$1<T extends DefineObject$1, P extends readonly (keyof T & string)[]> = P["length"] extends 0 ? FromDefineObject$1<T> : MakeKeysOptional$1<T, P> extends DefineObject$1 ? FromDefineObject$1<MakeKeysOptional$1<T, P>> : never;
15441
15492
  /**
15442
15493
  * Takes an object definition where the values are either
15443
15494
  * `SimpleToken` representations of a type or a `ShapeCallback`.
@@ -15445,7 +15496,7 @@ declare function isLeapYear(val: NumberLike$1 | Record<string, any> | Date | num
15445
15496
  * In both cases the runtime type is left unchanged but the
15446
15497
  * type is converted to represent the designed object shape.
15447
15498
  */
15448
- declare function defineObject<T extends DefineObject$1>(defn: T): FromDefn$1<T>;
15499
+ declare function defineObject<T extends DefineObject$1, P extends readonly (keyof T & string)[]>(defn: T, ..._optProps: P): Returns$1<T, P>;
15449
15500
 
15450
15501
  /**
15451
15502
  * **entries**
@@ -16040,14 +16091,14 @@ type _Index<T extends readonly string[], IF, ELSE, Results extends readonly unkn
16040
16091
  ...Results,
16041
16092
  If$1<Extends$1<T, LowerAlphaChar$1>, IF, ELSE>
16042
16093
  ]>;
16043
- type Returns$1<T extends string | readonly string[], IF, ELSE> = T extends string ? If$1<Extends$1<T, LowerAlphaChar$1>, IF, ELSE> : T extends readonly string[] ? _Index<T, IF, ELSE> : never;
16094
+ type Returns$2<T extends string | readonly string[], IF, ELSE> = T extends string ? If$1<Extends$1<T, LowerAlphaChar$1>, IF, ELSE> : T extends readonly string[] ? _Index<T, IF, ELSE> : never;
16044
16095
  /**
16045
16096
  * **ifLowercaseChar**(ch)
16046
16097
  *
16047
16098
  * Tests whether a passed in character is lowercase and then uses the appropriate callback to
16048
16099
  * mutate the value.
16049
16100
  */
16050
- declare function ifLowercaseChar<T extends string, IF, ELSE>(ch: T, callbackForMatch: <V extends T>(v: V) => IF, callbackForNoMatch: <V extends T>(v: V) => ELSE): Returns$1<T, IF, ELSE>;
16101
+ declare function ifLowercaseChar<T extends string, IF, ELSE>(ch: T, callbackForMatch: <V extends T>(v: V) => IF, callbackForNoMatch: <V extends T>(v: V) => ELSE): Returns$2<T, IF, ELSE>;
16051
16102
 
16052
16103
  type Convert$3<T, IF, ELSE> = If$1<Extends$1<T, UpperAlphaChar$1>, IF, ELSE>;
16053
16104
  /**
@@ -33195,6 +33246,14 @@ type TypeDefinition = NarrowableScalar | ShapeCallback;
33195
33246
  * generic will increase the narrowness of your types.
33196
33247
  */
33197
33248
  type DictTypeDefinition<V extends TypeDefinition = TypeDefinition> = Record<ObjectKey, V>;
33249
+ type _FromDefineObject<T extends Required<DefineObject>> = {
33250
+ [K in keyof T]: T[K] extends SimpleToken ? SimpleType<T[K]> : T[K] extends ShapeCallback ? ReturnType<HandleDoneFn<T[K]>> : never;
33251
+ };
33252
+ /**
33253
+ * Converts a `DefineObject` definition into the type that it is
33254
+ * defining.
33255
+ */
33256
+ type FromDefineObject<T extends DefineObject> = MakeKeysOptional<_FromDefineObject<Required<T>>, UnionToTuple$1<OptionalKeys<T>> extends readonly ObjectKey[] ? UnionToTuple$1<OptionalKeys<T>> : never>;
33198
33257
  /**
33199
33258
  * **FromDefn**`<T, [TElse]>`
33200
33259
  *
@@ -33210,9 +33269,7 @@ type DictTypeDefinition<V extends TypeDefinition = TypeDefinition> = Record<Obje
33210
33269
  * Note: when dictionary objects are found the _values_ will be
33211
33270
  * interrogated for ShapeCallback's.
33212
33271
  */
33213
- type FromDefn<T, TElse = Constant<"not-set">> = T extends DefineObject ? {
33214
- [K in keyof T]: T[K] extends SimpleToken ? SimpleType<T[K]> : T[K] extends ShapeCallback ? HandleDoneFn<T[K]> : never;
33215
- } : T extends readonly unknown[] ? IterateOverDefinitions<T, TElse> : ToType$1<T, TElse>;
33272
+ type FromDefn<T, TElse = Constant<"not-set">> = T extends DefineObject ? FromDefineObject<T> : T extends readonly unknown[] ? IterateOverDefinitions<T, TElse> : ToType$1<T, TElse>;
33216
33273
 
33217
33274
  type WideTokenNames = "string" | "number" | "boolean" | "null" | "undefined" | "never" | "unknown" | "string[]" | "number[]" | "boolean[]" | "unknown[]";
33218
33275
  type ConvertWideTokenNames<T extends WideTokenNames> = T extends "string" ? string : T extends "number" ? number : T extends "boolean" ? boolean : T extends "null" ? null : T extends "undefined" ? undefined : T extends "never" ? never : T extends "unknown" ? unknown : T extends "string[]" ? string[] : T extends "number[]" ? number[] : T extends "boolean[]" ? boolean[] : T extends "unknown[]" ? unknown[] : never;
@@ -33926,10 +33983,10 @@ type Process$e<TObj extends Dictionary, TKeys extends ObjectKey> = [] extends TK
33926
33983
  */
33927
33984
  type WithoutKeys<TObj extends Dictionary, TKeys extends ObjectKey | readonly ObjectKey[]> = TKeys extends readonly ObjectKey[] ? Process$e<TObj, TupleToUnion<TKeys>> : ExpandDictionary<Process$e<TObj, TKeys extends readonly ObjectKey[] ? TupleToUnion<TKeys> : TKeys>>;
33928
33985
 
33929
- type ProcessTupleKeys<TObj extends Dictionary, TKeys extends readonly ObjectKey[]> = ExpandDictionary<WithoutKeys<TObj, TKeys> & {
33986
+ type ProcessTupleKeys<TObj extends AnyObject, TKeys extends readonly ObjectKey[]> = ExpandDictionary<WithoutKeys<TObj, TKeys> & {
33930
33987
  [K in keyof WithKeys<TObj, TKeys>]?: K extends keyof TObj ? TObj[K] : never;
33931
33988
  }>;
33932
- type ProcessUnionKeys<TObj extends Dictionary, TKeys extends (string | symbol)> = ExpandDictionary<WithoutKeys<TObj, TKeys> & {
33989
+ type ProcessUnionKeys<TObj extends AnyObject, TKeys extends (string | symbol)> = ExpandDictionary<WithoutKeys<TObj, TKeys> & {
33933
33990
  [K in keyof WithKeys<TObj, TKeys>]?: K extends keyof TObj ? TObj[K] : never;
33934
33991
  }>;
33935
33992
  /**
@@ -33941,7 +33998,7 @@ type ProcessUnionKeys<TObj extends Dictionary, TKeys extends (string | symbol)>
33941
33998
  *
33942
33999
  * **Related:** `MakeKeysRequired`
33943
34000
  */
33944
- type MakeKeysOptional<TObj extends Dictionary, TKeys extends (string | symbol) | readonly ObjectKey[]> = TKeys extends readonly ObjectKey[] ? ProcessTupleKeys<TObj, TKeys> : TKeys extends (string | symbol) ? IsWideUnion<TKeys> extends true ? never : ProcessUnionKeys<TObj, TKeys> : never;
34001
+ type MakeKeysOptional<TObj extends AnyObject, TKeys extends (string | symbol) | readonly ObjectKey[]> = IsWideContainer<TObj> extends true ? TObj : TKeys extends readonly ObjectKey[] ? ProcessTupleKeys<TObj, TKeys> : TKeys extends (string | symbol) ? IsWideUnion<TKeys> extends true ? never : ProcessUnionKeys<TObj, TKeys> : never;
33945
34002
 
33946
34003
  /**
33947
34004
  * **OptionalKeys**`<T,[V]>`
@@ -34890,7 +34947,9 @@ type TypeTuple<TType extends Narrowable = Narrowable, TDesc extends string = str
34890
34947
  *
34891
34948
  * - typically used though a function of type `DefineObjectApi`
34892
34949
  */
34893
- type DefineObject = Record<string, SimpleToken | ShapeCallback>;
34950
+ interface DefineObject {
34951
+ [key: string]: SimpleToken | ShapeCallback;
34952
+ }
34894
34953
  /**
34895
34954
  * **DefineObjectApi**
34896
34955
  *
@@ -36231,4 +36290,4 @@ type LastOfEach<T extends readonly unknown[][]> = {
36231
36290
  */
36232
36291
  type SecondOfEach<T extends unknown[][]> = T[number][1] extends T[number][number] ? T[number][1] : never;
36233
36292
 
36234
- export { ACCELERATION_METRICS_LOOKUP$2 as ACCELERATION_METRICS_LOOKUP, ALPHA_CHARS, AMAZON_BOOKS, AMAZON_DNS$2 as AMAZON_DNS, APPLE_DNS$2 as APPLE_DNS, AREA_METRICS_LOOKUP$2 as AREA_METRICS_LOOKUP, AUSTRALIAN_NEWS$2 as AUSTRALIAN_NEWS, type Abs, type AbsMaybe, type Acceleration, type AccelerationMetrics, type AccelerationUom, type Add, type AddKeyValue, type AddUrlPathSegment, type AfterFirst, type AfterFirstChar, type AllCaps, type AllExtend, type AllLiteral, type AllNumericLiterals, type AllStringLiterals, type AllowNonTupleWhenSingular, type Alpha, type AlphaChar, type AlphaNumeric, type AlphaNumericChar, type AmPm, type AmPmCase, type AmazonUrl, type And, type AnyArray, type AnyFunction, type AnyObject, type AnyQueryParams, type Api, type ApiCallback, type ApiConfig, type ApiEscape, type ApiHandler, type ApiOptions, type ApiReturn, type ApiState, type ApiStateInitializer, type ApiSurface, type AppendRight, type AppleUrl, type AreSameLength, type AreSameType, type Area, type AreaMetrics, type AreaUom, type AriaDocStructureRoles, type AriaLandmarkRoles, type AriaLiveRegionRoles, type AriaRole, type AriaWidgetRoles, type AriaWindowRoles, type ArrayElementType, type ArrayToken, type ArrayTypeDefn, type As, type AsApi, type AsArray, type AsBoolean, type AsChoice, type AsClassSelector, type AsContainer, type AsDefined, type AsDictionary, type AsDoneFn, type AsErr, type AsErrKind, type AsError, type AsError__Meta, type AsEscapeFunction, type AsFinalizedConfig, type AsFnMeta, type AsFunction, type AsIndexOf, type AsIp6Prefix, type AsLeft, type AsLeftRight, type AsList, type AsLiteralFn, type AsNarrowingFn, type AsNegativeNumber, type AsNonNull, type AsNumber, type AsNumberWhenPossible, type AsNumericArray, type AsObject, type AsObjectKey, type AsObjectKeys, type AsOptionalParamFn, type AsPropertyKey, type AsRecord, type AsRef, type AsRight, type AsSomething, type AsString, type AsStringUnion, type AsTuple, type AsType, type AsUnion, type AsVueComputedRef, type AsyncFunction, type AtomicToken, type AustralianNewsCompanies, type AustralianNewsUrls, type AvailableConverters, type Awaited$1 as Awaited, BELGIUM_NEWS$2 as BELGIUM_NEWS, BEST_BUY_DNS$2 as BEST_BUY_DNS, BLOOD_MARKERS_LOOKUP, type BareCssSelector, type BaseTypeToken, type BeforeLast, type BelgianNewsCompanies, type BelgianNewsUrls, type BespokeLiteral, type BespokeUnion, type BestBuyUrl, type BooleanLike, type Box, type BoxValue, type BoxedFnParams, type Bracket, type Break, CANADIAN_NEWS$2 as CANADIAN_NEWS, CHEWY_DNS$2 as CHEWY_DNS, CHINESE_NEWS$2 as CHINESE_NEWS, COMMA, COMMON_OBJ_PROPS, CONSONANTS$2 as CONSONANTS, COSTCO_DNS$2 as COSTCO_DNS, CSS_NAMED_COLORS$2 as CSS_NAMED_COLORS, type CSV, CURRENT_METRICS_LOOKUP$2 as CURRENT_METRICS_LOOKUP, CVS_DNS$2 as CVS_DNS, type CamelCase, type CamelKeys, type CanadianNewsCompanies, type CanadianNewsUrls, type CapFirstAlpha, type CapitalizeWords, type Cardinality, type Cardinality0, type Cardinality1, type CardinalityExplicit, type CardinalityFilter0, type CardinalityFilter1, type CardinalityIn, type CardinalityInput, type CardinalityNode, type CardinalityOut, type Chars, type ChewyUrl, type ChineseNewsCompanies, type ChineseNewsUrls, type Choice, type ChoiceApi, type ChoiceApiConfig, type ChoiceApiOptions, type ChoiceBuilder, type ChoiceCallback, type ChoiceValue, type CivilianHours, type CivilianTime, type CivilianTimeOptions, type ClosingBracket, type ClosingMark, type ClosingMarkPlus, type ColorFnOptOpacity, type ColorFnValue, type ColorParam, type CombinedKeys, type CommonHtmlElement, type CommonObjProps, type ComparatorOperation, type Compare$1 as Compare, type Comparison, type CompleteError, type Concat, type ConfiguredMap, type Consonant, type Consonants, type Constant$3 as Constant, type Constructor, type Container, type ContainerBlockKey, type ContainerKeyGuarantee, type ContainerToken, type Contains, type ContainsAll, type Conversion, type ConversionTuple, type ConvertSet, type ConvertTypeOf, type ConvertWideTokenNames, type ConverterCoverage, type ConverterDefn, type CostCoUrl, type CostcoUrl, type CountryPhoneNumber, type Cr, type CrThenIndent, type CreateChoice, type CreateDictHash, type CreateDictShape, type CreateKV, type CreateLookup, type CssAbsolutionPositioningProperties, type CssAlignContent, type CssAlignItems, type CssAlignProperties, type CssAlignSelf, type CssAnimation, type CssAnimationComposition, type CssAnimationDelay, type CssAnimationDirection, type CssAnimationDuration, type CssAnimationFillMode, type CssAnimationIterationCount, type CssAnimationPlayState, type CssAnimationProperties, type CssAnimationTimingFunction, type CssAppearance, type CssAspectRatio, type CssBackdropFilter, type CssBackgroundProperties, type CssBorderCollapse, type CssBorderImageRepeat, type CssBorderImageSource, type CssBorderInlineSizing, type CssBorderProperties, type CssBorderStyle, type CssBorderWidth, type CssBoxAlign, type CssBoxDecorationBreak, type CssBoxProperties, type CssBoxShadow, type CssBoxSizing, type CssCalc, type CssClamp, type CssClassSelector, type CssColor, type CssColorFn, type CssColorLight, type CssColorMix, type CssColorMixLight, type CssColorModel, type CssColorSpace, type CssColorSpacePrimary, type CssContent, type CssCursor, type CssDefinition, type CssDisplay, type CssDisplayStatePseudoClasses, type CssFlex, type CssFlexBasis, type CssFlexDirection, type CssFlexFlow, type CssFlexGrow, type CssFlexShrink, type CssFloat, type CssFontFamily, type CssFontFeatureSetting, type CssFontKerning, type CssFontLanguageOverride, type CssFontPalette, type CssFontStyle, type CssFontSynthesis, type CssFontWeight, type CssFontWidth, type CssFunctionalPseudoClass, type CssGap, type CssGlobal, type CssHangingPunctuation, type CssHexColor, type CssHsb, type CssHsl, type CssIdSelector, type CssImageOrientation, type CssImageRendering, type CssImageResolution, type CssInputPseudoClasses, type CssJustifyContent, type CssJustifyItems, type CssJustifyProperties, type CssJustifySelf, type CssKeyframeCallback, type CssKeyframeTimestamp, type CssKeyframeTimestampSuggest, type CssLetterSpacing, type CssLinguisticPseudoClasses, type CssListStyle, type CssLocationPseudoClasses, type CssMargin, type CssMarginBlock, type CssMarginBlockEnd, type CssMarginBlockStart, type CssMarginBottom, type CssMarginInline, type CssMarginInlineEnd, type CssMarginInlineStart, type CssMarginLeft, type CssMarginProperties, type CssMarginRight, type CssMarginTop, type CssMixBlendMode, type CssNamedColors, type CssNamedSizes, type CssObjectFit, type CssObjectPosition, type CssOffsetDistance, type CssOffsetPath, type CssOffsetPosition, type CssOffsetProperties, type CssOkLch, type CssOpacity, type CssOutline, type CssOutlineColor, type CssOutlineOffset, type CssOutlineProperties, type CssOutlineStyle, type CssOutlineWidth, type CssOverflowAnchor, type CssOverflowBlock, type CssOverflowClipMargin, type CssOverflowInline, type CssOverflowProperties, type CssOverflowX, type CssOverflowY, type CssPadding, type CssPaddingBlock, type CssPaddingBlockEnd, type CssPaddingBlockStart, type CssPaddingBottom, type CssPaddingInline, type CssPaddingInlineEnd, type CssPaddingInlineStart, type CssPaddingLeft, type CssPaddingProperties, type CssPaddingRight, type CssPaddingTop, type CssPerspectiveOrigin, type CssPlaceContent, type CssPlaceItems, type CssPlaceProperties, type CssPlaceSelf, type CssPointerEvent, type CssPosition, type CssProperty, type CssPseudoClass, type CssPseudoClassDefn, type CssResourceStatePseudoClasses, type CssRgb, type CssRgba, type CssRotation, type CssRound, type CssSelector, type CssSelectorOptions, type CssSizing, type CssSizingFunction, type CssSizingLight, type CssStroke, type CssStrokeDasharray, type CssStrokeProperties, type CssTagSelector, type CssTextAlign, type CssTextDecorationLine, type CssTextDecorationStyle, type CssTextIndent, type CssTextJustify, type CssTextOrientation, type CssTextOverflow, type CssTextPosition, type CssTextProperties, type CssTextRendering, type CssTextTransform, type CssTextWrap, type CssTextWrapMode, type CssTextWrapStyle, type CssTimePseudoClasses, type CssTiming, type CssTransform, type CssTransformBox, type CssTransformOrigin, type CssTransformProperties, type CssTransformStyle, type CssTranslate, type CssTranslateFn, type CssTreePseudoClasses, type CssUserActionPseudoClasses, type CssVar, type CssVarWithFallback, type CssWhiteSpace, type CssWhiteSpaceCollapse, type CssWordBreak, type CssWritingMode, type CsvFormat, type CsvToJsonTuple, type CsvToStrUnion, type CsvToTuple, type CsvToTupleStr, type CsvToUnion, type Current, type CurrentMetrics, type CurrentUom, type CvsUrl, DANISH_NEWS$2 as DANISH_NEWS, DEFAULT_MANY_TO_ONE_MAPPING, DEFAULT_ONE_TO_MANY_MAPPING, DEFAULT_ONE_TO_ONE_MAPPING, DELL_DNS$2 as DELL_DNS, DISTANCE_METRICS_LOOKUP$2 as DISTANCE_METRICS_LOOKUP, DUTCH_NEWS$2 as DUTCH_NEWS, type DanishNewsCompanies, type DanishNewsUrls, type DashToSnake, type DashUppercase, type Date$2 as Date, type DateSeparator, type DateThenMonth, type DateThenMonthThenYear, type DateTime, type DateTimeMinutes, type DateTimeSeconds, type DayOfWeek, type DayofWeekFull, type DecomposeMapConfig, type Decrement, type Default, type DefaultManyToOneMapping, type DefaultOneToManyMapping, type DefaultOneToOneMapping, type DefineObject, type DefineObjectApi, type DefineStatelessApi, type Defined, type DellUrl, type Delta, type DialCountryCode, type Dict, type DictArray, type DictArrayFilterCallback, type DictArrayKv, type DictChangeValue, type DictFromKv, type DictKvTuple, type DictTypeDefinition, type Dictionary, type DictionaryTypeDefn, type Digit, type DigitNonZero, type Digital, type DigitalLiteral, type Digitize, type Distance, type DistanceMetrics, type DistanceUom, type DnsName, type DoesExtend, type DoesNotExtend, type DomainName, type DoneFnTuple, type DotPathFor, type DoubleQuote, type DropChars, type DutchNewsCompanies, type DutchNewsUrls, EBAY_DNS$2 as EBAY_DNS, ENERGY_METRICS_LOOKUP$2 as ENERGY_METRICS_LOOKUP, ETSY_DNS$2 as ETSY_DNS, type EbayUrl, type ElementOf, type Email, type EmptyObject, type EmptyString, type EmptyStringOr, type EndingWithTypeGuard, type EndsWith, type Energy, type EnergyMetrics, type EnergyUom, type EnsureKeys, type EnsureLeading, type EnsureLeadingEvery, type EnsureSurround, type EnsureTrailing, type EqualTo, type Equals, type Err, type ErrFrom, type ErrInput, type ErrorCondition, type ErrorConditionHandler, type ErrorConditionShape, type EscapeFunction, type EsotericHtmlElement, type EtsyUrl, type Exif, type ExifAttributionInfo, type ExifCameraInfo, ExifCompression, ExifContrast, type ExifDateTimeInfo, ExifEmbedPolicy, type ExifExtraneous, ExifFlashValues, ExifGainControl, type ExifGps, ExifLightSource, type ExifPhotoContext, ExifPreviewColorSpace, ExifSaturation, ExifSceneCaptureType, ExifSharpness, ExifSubjectDistance, type ExpandDictionary, type ExpandRecursively, type ExpandTuple, type ExpandUnion, type ExplicitlyEmptyObject, type Extends, type ExtendsAll, type ExtendsNone, type ExtendsSome, FALSY_TYPE_KINDS$1 as FALSY_TYPE_KINDS, FALSY_VALUES, FRENCH_NEWS$2 as FRENCH_NEWS, FREQUENCY_METRICS_LOOKUP$2 as FREQUENCY_METRICS_LOOKUP, type Fail, type FalsyValue, type FifoQueue, type Filter, type FilterByProp, type FilterLiterals, type FilterProps, type FilterWideTypes, type FinalizedMapConfig, type Find, type FindFirstIndex, type FindIndexMetaOfString, type FindIndexMetaOfTuple, type FindIndexes, type FindIndexesWithMeta, type FindLastIndex, type Finder, type First, type FirstChar, type FirstKey, type FirstKeyValue, type FirstOfEach, type FirstString, type FixedLengthArray, type Flatten, type FlattenUnion, type FluentApi, type FluentFn, type FluentState, type FnAllowingProps, type FnArgsDefn, type FnDefn, type FnFrom, type FnMeta, type FnPropertiesDefn, type FnProps, type FnReturnTypeDefn, type FnToken, type FnWithDescription, type FnWithProps, type FontProperties, type FrenchNewsCompanies, type FrenchNewsUrls, type Frequency, type FrequencyMetrics, type FrequencyUom, type FromDefn, type FromDictArray, type FromLiteralTokens, type FromMaybeRef, type FromRecordKeyDefn, type FromTypeDefn, type FromWideTokens, type FullDate, type FullWidthQuotation, type FullyQualifiedUrl, GERMAN_NEWS$2 as GERMAN_NEWS, GITHUB_INSIGHT_CATEGORY_LOOKUP$1 as GITHUB_INSIGHT_CATEGORY_LOOKUP, type GeneratorToken, type GermanNewsCompanies, type GermanNewsUrls, type Get$1 as Get, type GetEach, type GetEachOptions, type GetEscapeFunction, type GetOptions, type GetPhoneCountryCode, type GetPhoneNumberType, type GetTypeOf, type GetUrlPath, type GetUrlPort, type GetUrlProtocol, type GetUrlProtocolPrefix, type GetUrlQueryParams, type GetUrlSource, type GetYouTubePageType, type GitRef, type GithubActionsUrl, type GithubInsightPageType, type GithubInsightUrl, type GithubOrgUrl, type GithubRepoBranchesUrl, type GithubRepoDiscussionUrl, type GithubRepoDiscussionsUrl, type GithubRepoIssueUrl, type GithubRepoIssuesListUrl, type GithubRepoProjectUrl, type GithubRepoProjectsUrl, type GithubRepoPullRequestUrl, type GithubRepoPullRequestsUrl, type GithubRepoReleaseTagUrl, type GithubRepoReleasesUrl, type GithubRepoTagsUrl, type GithubRepoUrl, type GithubUrl, HASH_TABLE_ALPHA_LOWER, HASH_TABLE_ALPHA_UPPER, HASH_TABLE_CHAR, HASH_TABLE_DIGIT, HASH_TABLE_OTHER, HASH_TABLE_SPECIAL, HASH_TABLE_WIDE, HM_DNS$2 as HM_DNS, HOME_DEPOT_DNS$2 as HOME_DEPOT_DNS, type HandMUrl, type Handle, type HandleDoneFn, type HasArray, type HasCharacters, type HasEscapeFunction, type HasIndex, type HasIpAddress, type HasNetworkProtocolReference, type HasOtherCharacters, type HasParameters, type HasPhoneCountryCode, type HasProp, type HasQueryParameter, type HasRequiredProps, type HasSameKeys, type HasSameValues, type HasUnionType, type HasUppercase, type HasUrlPath, type HasUrlSource, type HasWideValues, type HaveSameNumericSign, type HexColor, type Hexadecimal, type HexadecimalChar, type HomeDepotUrl, type HoursMinutes, type HoursMinutes12, type HoursMinutesSeconds, type HoursMinutesSeconds12, type HoursMinutesSecondsMilliseconds, type HoursMinutesSecondsMilliseconds12, type HtmlBodyElement, type HtmlElement, type HtmlFrameworkElement, type HtmlFunctionalElement, type HtmlHeaderElement, type HtmlInputElement, type HtmlListElement, type HtmlMediaElement, type HtmlStructuralElement, type HtmlSymantecElement, type HtmlTableElement, IKEA_DNS$2 as IKEA_DNS, IMAGE_FORMAT_LOOKUP$1 as IMAGE_FORMAT_LOOKUP, INDIAN_NEWS$2 as INDIAN_NEWS, type IP6Multicast, type IP6Unicast, IPv4, IPv6$1 as IPv6, ISO3166_1$2 as ISO3166_1, ITALIAN_NEWS$2 as ITALIAN_NEWS, type IdentityFn, type IdentityFunction, type If, type IfAllExtend, type IfAllLiteral, type IfEqual, type IfEquals, type IfErrorCondition, type IfLeft, type IfLength, type IfLiteralKind, type IfNever, type IfUnset, type IfUnsetOrUndefined, type Iff, type IkeaUrl, type ImgFormat, type ImgFormatWeb, type Immutable, type Increment, type Indent$1 as Indent, type Indent2, type Indent4, type IndentSpaces, type IndentTab, type IndexOf, type Indexable, type IndexableObject, type IndianNewsCompanies, type IndianNewsUrls, type InlineSvg, type InternationalPhoneNumber, type Intersect$1 as Intersect, type IntersectAll, type IntersectWithAll, type IntersectingKeys, type Intersection, type InvertNumericSign, type Ip4Address, type Ip4Netmask, type Ip4Netmask16, type Ip4Netmask24, type Ip4Netmask32, type Ip4Netmask8, type Ip4NetmaskSuggestion, type Ip4Octet, type Ip6Address, type Ip6AddressFull, type Ip6AddressLoose, type Ip6Group, type Ip6GroupExpansion, type Ip6Loopback, type Ip6Subnet, type Ip6SubnetPrefix, type IsAllCaps, type IsAllLowercase, type IsArray, type IsBoolean, type IsBooleanLiteral, type IsCapitalized, type IsComputedRef, type IsContainer, type IsCssHexadecimal, type IsDefined, type IsDictionaryDefinition, type IsDomainName, type IsDotPath, type IsEmptyContainer, type IsEmptyObject, type IsEmptyString, type IsEqual, type IsErr, type IsErrorCondition, type IsEscapeFunction, type IsFalse, type IsFalsy, type IsFloat, type IsFnWithParams, type IsFunction, type IsGreaterThan, type IsGreaterThanOrEqual, type IsHexadecimal, type IsInteger, type IsIp4Address, type IsIp4Octet, type IsIp6Address, type IsIp6HexGroup, type IsIpAddress, type IsIso8601DateTime, type IsIsoDate, type IsIsoExplicitDate, type IsIsoImplicitDate, type IsIsoTime, type IsJsDate, type IsLength, type IsLessThan, type IsLessThanOrEqual, type IsLiteral, type IsLiteralFn, type IsLiteralKind, type IsLiteralUnion, type IsLowerAlpha, type IsLuxonDateTime, type IsMoment, type IsNarrowingFn, type IsNegativeNumber, type IsNever, type IsNonEmptyContainer, type IsNonEmptyObject, type IsNonLiteralUnion, type IsNotEqual, type IsNothing, type IsNull, type IsNumber, type IsNumberLike, type IsNumericLiteral, type IsObject, type IsObjectLiteral, type IsOk, type IsOptionalLiteral, type IsOptionalScalar, type IsPhoneNumber, type IsPositiveNumber, type IsReadonlyArray, type IsReadonlyObject, type IsResult, type IsScalar, type IsSingleChar, type IsSingleSided, type IsSingularNoun, type IsStrictPromise, type IsString, type IsStringLiteral, type IsSymbol, type IsThenable, type IsTrue, type IsTruthy, type IsTuple, type IsTypeToken, type IsUndefined, type IsUnion, type IsUnionArray, type IsUnset, type IsUrl, type IsValidDotPath, type IsValidIndex, type IsVueRef, type IsWideContainer, type IsWideScalar, type IsWideType, type IsWideUnion, type Iso3166Alpha2Lookup, type Iso3166Alpha3Lookup, type Iso3166CodeLookup, type Iso3166CountryLookup, type Iso3166_1_Alpha2, type Iso3166_1_Alpha3, type Iso3166_1_CountryCode, type Iso3166_1_CountryName, type Iso3166_1_Lookup, type Iso3166_1_Token, type Iso8601, type Iso8601Date, type Iso8601DateTime, type Iso8601Time, type Iso8601Year, type ItalianNewsCompanies, type ItalianNewsUrls, JAPANESE_NEWS$2 as JAPANESE_NEWS, type JapaneseNewsCompanies, type JapaneseNewsUrls, type Join, type Joiner, type JsonValue, type JsonValues, type JustFunction, KROGER_DNS$2 as KROGER_DNS, type KebabCase, type KebabKeys, type KeyOf, type KeyValue, type KeyframeApi, type Keys, type KeysEqualValue, type KeysNotEqualValue, type KeysWithValue, type KeysWithoutValue, type KindFrom, type KlassMeta, type KrogerUrl, type KvFn, type KvFnDefn, type KvFrom, type KvTuple, LITERAL_TYPE_KINDS$1 as LITERAL_TYPE_KINDS, LOWER_ALPHA_CHARS$2 as LOWER_ALPHA_CHARS, LOWES_DNS$2 as LOWES_DNS, LUMINOSITY_METRICS_LOOKUP$2 as LUMINOSITY_METRICS_LOOKUP, type Last, type LastChar, type LastInUnion$1 as LastInUnion, type LastOfEach, type LeadingNonAlpha, type Left, type LeftContains, type LeftDoubleMark, type LeftEquals, type LeftExtends, type LeftHeavyDoubleTurned, type LeftHeavySingleTurned, type LeftIncludes, type LeftLowDoublePrime, type LeftReversedDoublePrime, type LeftRight, type LeftRight__Operations, type LeftSingleMark, type LeftWhitespace, type Length, type LessThan, type LessThanOrEqual$1 as LessThanOrEqual, type LifoQueue, type LikeRegExp, type List, type LiteralFn, type LocalPhoneNumber, type LogicFunction, type LogicalCombinator, type LogicalReturns, type LowerAllCaps, type LowerAlphaChar, type LowesUrl, type Luminosity, type LuminosityMetrics, type LuminosityUom, type LuxonJs, MACYS_DNS$2 as MACYS_DNS, MARKED$2 as MARKED, MASS_METRICS_LOOKUP$2 as MASS_METRICS_LOOKUP, MEXICAN_NEWS$2 as MEXICAN_NEWS, MONTH_ABBR$1 as MONTH_ABBR, MONTH_NAME$1 as MONTH_NAME, type MacysUrl, type MakeKeysOptional, type MakeKeysRequired, type MakePropsMutable, type ManyToMany, type ManyToOne, type ManyToZero, type MapCard, MapCardinality, type MapCardinalityFrom, type MapCardinalityIllustrated, type MapConfig, type MapCoverage, type MapError, type MapFn, type MapFnInput, type MapFnOutput, type MapIR, type MapInput, type MapInputFrom, type MapKeyDefn, type MapOR, type MapOutput, type MapOutputFrom, type MapTo, type MapToken, type MapValueDefn, type Mapper, type MapperApi, type Marked$5 as Marked, type Mass, type MassMetrics, type MassUom, type MaxLength, type MaybeError, type MaybeRef, type Merge, type MergeKVs, type MergeObjects, type MergeScalars, type MergeTuples, type Metric, type MexicanNewsCompanies, type MexicanNewsUrls, type MilitaryHours, type MilitaryTime, type MilitaryTimeOptions, type Milliseconds, type Minutes, type MomentJs, type MonthAbbr, type MonthAbbrThenDate, type MonthAbbrThenDateAndYear, type MonthDay, type MonthName, type MonthNumeric, type MonthPostfix, type MonthThenDate, type MonthThenDateThenYear, type MonthThenDate_Simple, type MultiChoiceCallback, type MultipleChoice, type Mutable, type MutableProps, type MutablePropsExclusive, NARROW_CONTAINER_TYPE_KINDS$1 as NARROW_CONTAINER_TYPE_KINDS, NETWORK_PROTOCOL_LOOKUP$2 as NETWORK_PROTOCOL_LOOKUP, NIKE_DNS$2 as NIKE_DNS, NON_ZERO_NUMERIC_CHAR$2 as NON_ZERO_NUMERIC_CHAR, NORWEGIAN_NEWS$2 as NORWEGIAN_NEWS, NOT_APPLICABLE$1 as NOT_APPLICABLE, NOT_DEFINED$1 as NOT_DEFINED, NO_DEFAULT_VALUE$2 as NO_DEFAULT_VALUE, NUMERIC_CHAR$2 as NUMERIC_CHAR, NUMERIC_DIGIT$1 as NUMERIC_DIGIT, type NamedColor, type NamedColorMinimal, type NamedColor_Blue, type NamedColor_Brown, type NamedColor_Cyan, type NamedColor_Gray, type NamedColor_Green, type NamedColor_Orange, type NamedColor_Pink, type NamedColor_Purple, type NamedColor_Red, type NamedColor_White, type NamedColor_Yellow, type NamingConvention, type Narrow$1 as Narrow, type NarrowDictProps, type NarrowObject, type Narrowable, type NarrowableDefined, type NarrowableScalar, type NarrowingFn, type NarrowlyContains, type NegDelta, type Negative, type NetworkProtocol, type NetworkProtocolPrefix, Never, type NewsUrls, type NextDigit, type NikeUrl, type NoDefaultValue$2 as NoDefaultValue, type NonAlphaChar, type NonArray, type NonNumericKeys, type NonStringKeys, type NonZeroNumericChar, type NorwegianNewsCompanies, type NorwegianNewsUrls, type Not, type NotApplicable$1 as NotApplicable, type NotDefined$1 as NotDefined, type NotEqual, type NotLength, type NotNull, type Nothing, type NumberLike, type NumericChar, type NumericCharOneToFive, type NumericCharOneToFour, type NumericCharOneToThree, type NumericCharOneToTwo, type NumericCharZeroToFive, type NumericCharZeroToFour, type NumericCharZeroToOne, type NumericCharZeroToThree, type NumericCharZeroToTwo, type NumericComparatorOperation, type NumericKeys, type NumericRange, type NumericSign, type NumericSort, type NumericSupportOptions, OPTION, type ObjKeyDefn, type ObjectKey, type ObjectToCssString, type ObjectToJsString, type ObjectToJsonString, type ObjectToKeyframeString, type ObjectToTuple, type ObjectToken, type Ok, type OkFrom, type OldSchoolHtmlElement, type OnPass, type OnPassRemap, type OneToMany, type OneToOne, type OneToZero, type OpeningBracket, type OpeningMark, type OpeningMarkPlus, type Opt$1 as Opt, type OptCr, type OptCrThenIndent, type OptDictProps, type OptModifier, type OptPercent, type OptRequired, type OptSpace, type OptSpace2, type OptSpace4, type OptUrlQueryParameters, type OptWhitespace, type Optional, type OptionalKeys, type OptionalParamFn, type OptionalProps, type OptionalSimpleScalarTokens, type OptionalSpace, type Or, PHONE_COUNTRY_CODES$1 as PHONE_COUNTRY_CODES, PHONE_FORMAT$1 as PHONE_FORMAT, PLURAL_EXCEPTIONS$2 as PLURAL_EXCEPTIONS, PLURAL_EXCEPTIONS_OLD, POWER_METRICS_LOOKUP$2 as POWER_METRICS_LOOKUP, PRESSURE_METRICS_LOOKUP$2 as PRESSURE_METRICS_LOOKUP, PROXMOX_CT_STATE, type ParamsForComparison, type ParseInt, type ParseToken, type PartialError, type PartialErrorDefn, type PascalCase, type PascalKeys, type Passthrough, type PathJoin, type PhoneAreaCode, type PhoneCountryCode, type PhoneCountryLookup, type PhoneFormat, type PhoneNumber, type PhoneNumberDelimiter, type PhoneNumberType, type PhoneShortCode, type PluralExceptions, type Pluralize, type PlusMinus, type Pop, type PortSpecifierOptions, type Power, type PowerMetrics, type PowerUom, type Prepend, type PrependAll, type Pressure, type PressureMetrics, type PressureUom, type PriorDigit, type PrivateKey, type PrivateKeyOf, type PrivateKeys, type PromiseAll, type PropertyChar, type ProtocolOptions, type ProxyError, type PublicKeyOf, type PublicKeys, type Punctuation, type Push, type QuotationMark, type QuotationMarkPlus, REPO_PAGE_TYPES$1 as REPO_PAGE_TYPES, REPO_SOURCES$2 as REPO_SOURCES, REPO_SOURCE_LOOKUP$3 as REPO_SOURCE_LOOKUP, RESISTANCE_METRICS_LOOKUP$2 as RESISTANCE_METRICS_LOOKUP, RESULT$1 as RESULT, type RawPhoneNumber, type ReadonlyKeys, type ReadonlyProps, type RealizedErr, type RecordKeyDefn, type RecordKeyWideTokens, type RecordToken, type RecordValueTypeDefn, type ReduceValues, type RegularFn$1 as RegularFn, type Relate, type RelativeUrl, type RemoveEmpty, type RemoveFnProps, type RemoveFromEnd, type RemoveFromStart, type RemoveHttpProtocol, type RemoveIndex, type RemoveIndexKeys, type RemoveMarked, type RemoveNetworkProtocol, type RemoveNever, type RemovePhoneCountryCode, type RemoveStart, type RemoveUndefined, type RemoveUrlPort, type RemoveUrlSource, type Repeat, type Replace, type ReplaceAll, type ReplaceLast, type RepoPageType, type RepoSource, type RepoUrls, type RequireProps, type RequiredKeys, type RequiredKeysTuple, type RequiredProps, type RequiredSimpleScalarTokens, type Resistance, type ResistanceMetrics, type ResistanceUom, type Result, type ResultApi, type ResultErr, type ResultTuple, type RetailUrl, type Retain, type RetainAfter, type RetainAfterLast, type RetainByProp, type RetainChars, type RetainLiterals, type RetainProps, type RetainUntil, type RetainWhile, type RetainWideTypes, type ReturnTypes, type ReturnValues, type Returns, type ReturnsFalse, type ReturnsTrue, type Reverse, type RgbColor, type RgbaColor, type Right, type RightContains, type RightDoubleMark, type RightEquals, type RightExtends, type RightHeavyDoubleTurned, type RightHeavySingleTurned, type RightIncludes, type RightReversedDoublePrime, type RightSingleMark, type RightWhitespace, type RuntimeUnion, SHAPE_DELIMITER, SHAPE_PREFIXES, SIMPLE_ARRAY_TOKENS$2 as SIMPLE_ARRAY_TOKENS, SIMPLE_CONTAINER_TOKENS, SIMPLE_DICT_TOKENS$2 as SIMPLE_DICT_TOKENS, SIMPLE_DICT_VALUES$2 as SIMPLE_DICT_VALUES, SIMPLE_FN_TOKENS, SIMPLE_MAP_KEYS$2 as SIMPLE_MAP_KEYS, SIMPLE_MAP_TOKENS$2 as SIMPLE_MAP_TOKENS, SIMPLE_MAP_VALUES$2 as SIMPLE_MAP_VALUES, SIMPLE_OPT_SCALAR_TOKENS$2 as SIMPLE_OPT_SCALAR_TOKENS, SIMPLE_SCALAR_TOKENS$2 as SIMPLE_SCALAR_TOKENS, SIMPLE_SET_TOKENS$2 as SIMPLE_SET_TOKENS, SIMPLE_SET_TYPES$2 as SIMPLE_SET_TYPES, SIMPLE_TOKENS, SIMPLE_UNION_TOKENS$2 as SIMPLE_UNION_TOKENS, SINGULAR_NOUN_ENDINGS$1 as SINGULAR_NOUN_ENDINGS, SOCIAL_MEDIA$2 as SOCIAL_MEDIA, SOUTH_KOREAN_NEWS$2 as SOUTH_KOREAN_NEWS, SPANISH_NEWS$2 as SPANISH_NEWS, SPEED_METRICS_LOOKUP$2 as SPEED_METRICS_LOOKUP, SWISS_NEWS$2 as SWISS_NEWS, type Scalar, type ScalarCallback, type ScalarNotSymbol, type Second, type SecondOfEach, type Seconds, type SemanticVersion, type SerializedComma, type SetCandidate, type SetToken, type Shape, type ShapeApi, ShapeApiImplementation, type ShapeApi__Scalars, type ShapeCallback, type ShapeSuggest, type ShapeTupleOrUnion, type SharedKeys, type Shift, type ShortDate, type SimpleArrayToken, type SimpleContainerToken, type SimpleDictToken, type SimpleMapToken, type SimpleScalarToken, type SimpleSetToken, type SimpleToken, type SimpleType, type SimpleTypeArray, type SimpleTypeDict, type SimpleTypeMap, type SimpleTypeScalar, type SimpleTypeSet, type SimpleTypeUnion, type SimpleUnionToken, type SimplifyObject, type SingleQuote, type SingletonClosure, type SingletonToken, type SingularNoun$1 as SingularNoun, type SingularNounEnding, type SizingUnits, type Slice, type SmartMark, type SmartMarkPlus, type SnakeCase, type SnakeKeys, type SocialMediaPlatform, type SocialMediaProfileUrl, type SocialMediaUrl, type Some, type SomeEqual, type SomeExtend, type Something, type SouthKoreanNewsCompanies, type SouthKoreanNewsUrls, type SpanishNewsCompanies, type SpanishNewsUrls, type SpecialChar, type Speed, type SpeedMetrics, type SpeedUom, type Split, type StackFrame, type StackTrace, type StandardMark, type StartingWithTypeGuard, type StartsWith, type StrLen, type StringComparatorOperation, type StringDelimiter, type StringKeys, type StringLength, type StringLiteralFromTuple, type StringLiteralToken, type StringTokenUtilities, type StripAfter, type StripBefore, type StripChars, type StripLeading, type StripLeftNonAlpha, type StripSlash, type StripSurround, type StripSurroundConfigured, type StripTrailing, type StripUntil, type StripWhile, type StrongMap, type StrongMapTransformer, type StrongMapTypes, type StructuredStringType, type Subtract, type Suggest, type SuggestHexadecimal, type SuggestIpAddress, type SuggestNumeric, type Surround, type SurroundWith, type SwissNewsCompanies, type SwissNewsUrls, type SymbolKind, TARGET_DNS$2 as TARGET_DNS, TEMPERATURE_METRICS_LOOKUP$2 as TEMPERATURE_METRICS_LOOKUP, TIME_METRICS_LOOKUP$2 as TIME_METRICS_LOOKUP, type TLD, TOP_LEVEL_DOMAINS$1 as TOP_LEVEL_DOMAINS, TT_Atomics$2 as TT_Atomics, TT_Containers$2 as TT_Containers, TT_Functions$2 as TT_Functions, TT_SEP$1 as TT_SEP, TT_START$2 as TT_START, TT_STOP$2 as TT_STOP, TT_Sets$2 as TT_Sets, TT_Singletons$2 as TT_Singletons, TURKISH_NEWS$2 as TURKISH_NEWS, TW_CHROMA$2 as TW_CHROMA, TW_CHROMA_100, TW_CHROMA_200, TW_CHROMA_300, TW_CHROMA_400, TW_CHROMA_50, TW_CHROMA_500, TW_CHROMA_600, TW_CHROMA_700, TW_CHROMA_800, TW_CHROMA_900, TW_CHROMA_950, TW_COLOR_TARGETS$2 as TW_COLOR_TARGETS, TW_HUE$2 as TW_HUE, TW_HUE_NEUTRAL$2 as TW_HUE_NEUTRAL, TW_HUE_STATIC, TW_HUE_VIBRANT$2 as TW_HUE_VIBRANT, TW_LUMINOSITY$2 as TW_LUMINOSITY, TW_LUMIN_100, TW_LUMIN_200, TW_LUMIN_300, TW_LUMIN_400, TW_LUMIN_50, TW_LUMIN_500, TW_LUMIN_600, TW_LUMIN_700, TW_LUMIN_800, TW_LUMIN_900, TW_LUMIN_950, TW_MODIFIERS, TW_MODIFIERS_CORE$2 as TW_MODIFIERS_CORE, TW_MODIFIERS_ORDER$2 as TW_MODIFIERS_ORDER, TW_MODIFIERS_RELN$2 as TW_MODIFIERS_RELN, TW_MODIFIERS_SIZING$2 as TW_MODIFIERS_SIZING, TYPE_COMPARISONS, TYPE_KINDS, TYPE_OF$2 as TYPE_OF, TYPE_TOKEN_ALL, TYPE_TOKEN_IDENTITIES, TYPE_TOKEN_PARAM_CSV, TYPE_TOKEN_PARAM_DATE, TYPE_TOKEN_PARAM_DATETIME, TYPE_TOKEN_PARAM_STR, TYPE_TOKEN_PARAM_TIME, TYPE_TRANSFORMS, type TZ, type TakeFirst, type TakeLast, type TakeProp, type TargetUrl, type Temperature, type TemperatureMetrics, type TemperatureUom, type Thenable, type Throw, type Time, type TimeInMilliseconds, type TimeInMinutes, type TimeInSeconds, type TimeLike, type TimeMetric, type TimeMetrics, type TimeNomenclature, type TimeResolution, type TimeUom, type Timezone, type ToBoolean, type ToCSV, type ToChoices, type ToContainer, type ToFn, type ToInteger, type ToIntegerOp, type ToJsonValue, type ToNumber, type ToNumericArray, type ToPhoneFormat, type ToString, type ToStringArray, type ToStringLiteral, type ToUnion, type TokenBaseType, type TokenKind, type TokenLiteralType, type TokenizeStringLiteral, type Trim, type TrimLeft, type TrimRight, type Truncate$1 as Truncate, type TruncateAtLen, type TruthyReturns, type Tuple, type TupleDefn, type TupleRange, type TupleToUnion, type TupleToken, type TurkishNewsCompanies, type TurkishNewsUrls, type TwChroma, type TwChroma100, type TwChroma200, type TwChroma300, type TwChroma400, type TwChroma50, type TwChroma500, type TwChroma600, type TwChroma700, type TwChroma800, type TwChroma900, type TwChroma950, type TwChromaLookup, type TwColor, type TwColorOptionalOpacity, type TwColorTarget, type TwColorWithLuminosity, type TwColorWithLuminosityOpacity, type TwHue, type TwLumi100, type TwLumi200, type TwLumi300, type TwLumi400, type TwLumi50, type TwLumi500, type TwLumi600, type TwLumi700, type TwLumi800, type TwLumi900, type TwLumi950, type TwLuminosity, type TwLuminosityLookup, type TwModifier, type TwModifier__Core, type TwModifier__Order, type TwModifier__Reln, type TwModifier__Size, type TwModifiers, type TwNeutralColor, type TwSizeResponsive, type TwStaticColor, type TwTarget__Color, type TwTarget__ColorLuminosity, type TwTarget__ColorLuminosityWithOpacity, type TwTarget__ColorName, type TwTarget__ColorWithOptPrefixes, type TwTarget__Color__Light, type TwVibrantColor, type Type, type TypeDefaultValue, type TypeDefinition, type TypeDefn, type TypeDefnValidations, type TypeErrorInfo, type TypeGuard, type TypeHasDefaultValue, type TypeHasUnderlying, type TypeHasValidations, type TypeIsRequired, type TypeKind, type TypeKindContainer, type TypeKindContainerNarrow, type TypeKindContainerWide, type TypeKindFalsy, type TypeKindLiteral, type TypeKindWide, type TypeOf, type TypeOfExtended, type TypeOfTypeGuard, type TypeOptions, type TypeRequired, type TypeStrength, type TypeToken, type TypeTokenAtomics, type TypeTokenContainers, type TypeTokenFunctions, type TypeTokenKind, type TypeTokenSeparator, type TypeTokenSets, type TypeTokenSingletons, type TypeTokenStart, type TypeTokenStop, type TypeTuple, type TypeUnderlying, type TypedFunction, type TzHourOffset, UK_NEWS$2 as UK_NEWS, UPPER_ALPHA_CHARS$2 as UPPER_ALPHA_CHARS, US_NEWS$2 as US_NEWS, US_STATE_LOOKUP$2 as US_STATE_LOOKUP, US_STATE_LOOKUP_PROVINCES$2 as US_STATE_LOOKUP_PROVINCES, US_STATE_LOOKUP_STRICT, type UkNewsCompanies, type UkNewsUrls, type Unbox, type UndefinedArrayIsUnknown, type UnderlyingType, type UnionArrayToTuple, type UnionClosure, type UnionElDefn, type UnionFilter, type UnionFromProp, type UnionHasArray, type UnionMutate, type UnionMutationOp, type UnionRetain, type UnionSetToken, type UnionShift, type UnionToIntersection, type UnionToTuple$1 as UnionToTuple, type UnionToken, type UnionWithAll, type Unique, type UniqueKeys, type UniqueKeysUnion, type UniqueKv, type UnitType, type Unset, type Uom, type UpperAlphaChar, type UpsertKeyValue, type Uri, type UrlBuilder, type UrlMeta, type UrlOptions, type UrlPath, type UrlPort, type UrlQueryParameters, type UrlsFrom, type UsNewsCompanies, type UsNewsUrls, type UsStateAbbrev, type UsStateName, VOLTAGE_METRICS_LOOKUP$2 as VOLTAGE_METRICS_LOOKUP, VOLUME_METRICS_LOOKUP$2 as VOLUME_METRICS_LOOKUP, type ValidKey, type Validate, type ValidationFunction, type ValueAtDotPath, type ValueCallback, type ValueOrReturnValue, type Values, type VariableChar, type Voltage, type VoltageMetrics, type VoltageUom, type Volume, type VolumeMetrics, type VolumeUom, type VueComputedRef, type VueRef, WALGREENS_DNS$2 as WALGREENS_DNS, WALMART_DNS$2 as WALMART_DNS, WAYFAIR_DNS$2 as WAYFAIR_DNS, WHITESPACE_CHARS$2 as WHITESPACE_CHARS, WHOLE_FOODS_DNS$2 as WHOLE_FOODS_DNS, WIDE_CONTAINER_TYPE_KINDS$1 as WIDE_CONTAINER_TYPE_KINDS, WIDE_TYPE_KINDS$1 as WIDE_TYPE_KINDS, type WalgreensUrl, type WalmartUrl, type WayFairUrl, type WeakMapKeyDefn, type WeakMapToken, type WeakMapValueDefn, type WhenNever, type WhereLeft, type Whitespace, type WholeFoodsUrl, WideAssignment, type WideContainerNames, type WideTokenNames, type WideTypeName, type Widen, type WidenContainer, type WidenLiteral, type WidenScalar, type WidenTuple, type WidenUnion, type WidenValues, type WithDefault, type WithKeys, type WithNumericKeys, type WithStringKeys, type WithValue, type WithoutKeys, type WithoutValue, type WrapperFn, type YMD, type Year, type YouTubeCreatorUrl, type YouTubeEmbedUrl, type YouTubeFeedType, type YouTubeFeedUrl, type YouTubeHistoryUrl, type YouTubeHome, type YouTubeLikedPlaylistUrl, type YouTubeMeta, type YouTubePageType, type YouTubePlaylistUrl, type YouTubeShareUrl, type YouTubeSubscriptionsUrl, type YouTubeUrl, type YouTubeUsersPlaylistUrl, type YouTubeVideoUrl, type YouTubeVideosInPlaylist, ZARA_DNS$2 as ZARA_DNS, ZIP_TO_STATE$1 as ZIP_TO_STATE, type ZaraUrl, type Zero, type ZeroToMany, type ZeroToOne, type ZeroToZero, type Zip5, type ZipCode, type ZipPlus4, type ZipToState, addFnToProps, addPropsToFn, and, asApi, asArray, asChars, asDate, asEscapeFunction, asIsoDate, asOptionalParamFunction, asPhoneFormat, asRecord, asString, asStringLiteral, asType, asTypeToken, asVueRef, box, boxDictionaryValues, capitalize, choices, createConstant, createConverter, createCssKeyframe, createCssSelector, createErrorCondition, createFifoQueue, createFnWithProps, createFnWithPropsExplicit, createLifoQueue, createTypeToken, cssColor, csv, defineCss, defineObj, defineObject, defineTuple, endsWith, ensureLeading, ensureSurround, ensureTrailing, entries, errCondition, filter, find, fnMeta, get, getDaysBetween, getEach, getPhoneCountryCode, getTailwindModifiers, getToday, getTomorrow, getUrlPath, getUrlPort, getUrlProtocol, getUrlQueryParams, getUrlSource, getWeekNumber, getYesterday, getYouTubePageType, handleDoneFn, hasDefaultValue, hasIndexOf, hasKeys, hasUrlPort, hasUrlQueryParameter, hasWhiteSpace, idLiteral, idTypeGuard, identity, ifArray, ifArrayPartial, ifBoolean, ifChar, ifContainer, ifDefined, ifFalse, ifFunction, ifHasKey, ifLength, ifLowercaseChar, ifNotNull, ifNull, ifNumber, ifObject, ifSameType, ifScalar, ifString, ifTrue, ifUndefined, ifUppercaseChar, indexOf, intersect, intersection, ip6GroupExpansion, ip6Prefix, isAccelerationMetric, isAccelerationUom, isAlpha, isAmazonUrl, isApi, isApiSurface, isAppleUrl, isAreaMetric, isAreaUom, isArray, isArrayToken, isAtomicToken, isAustralianNewsUrl, isBelgiumNewsUrl, isBestBuyUrl, isBitbucketUrl, isBoolean, isBooleanLike, isBox, isCanadianNewsUrl, isChineseNewsUrl, isCodeCommitUrl, isConstant, isContainer, isContainerToken, isCostCoUrl, isCountryAbbrev, isCountryCode2, isCountryCode3, isCountryName, isCssAspectRatio, isCurrentMetric, isCurrentUom, isCvsUrl, isDanishNewsUrl, isDate, isDefineObject, isDefined, isDellUrl, isDistanceMetric, isDistanceUom, isDomainName, isDoneFn, isDutchNewsUrl, isEbayUrl, isEmail, isEnergyMetric, isEnergyUom, isEqual, isErrorCondition, isEscapeFunction, isEtsyUrl, isFalse, isFalsy, isFnToken, isFnWithParams, isFrenchNewsUrl, isFrequencyMetric, isFrequencyUom, isFunction, isGeneratorToken, isGermanNewsUrl, isGithubIssueUrl, isGithubIssuesListUrl, isGithubOrgUrl, isGithubProjectUrl, isGithubProjectsListUrl, isGithubReleaseTagUrl, isGithubReleasesListUrl, isGithubRepoReleaseTagUrl, isGithubRepoReleasesUrl, isGithubRepoUrl, isGithubUrl, isHexadecimal, isHmUrl, isHomeDepotUrl, isHtmlElement, isIkeaUrl, isIndexable, isIndianNewsUrl, isInlineSvg, isIp4Address, isIp6Address, isIpAddress, isIso3166Alpha2, isIso3166Alpha3, isIso3166CountryCode, isIso3166CountryName, isIsoDate, isIsoDateTime, isIsoExplicitDate, isIsoExplicitTime, isIsoImplicitDate, isIsoImplicitTime, isIsoTime, isIsoYear, isItalianNewsUrl, isJapaneseNewsUrl, isKrogersUrl, isLeapYear, isLength, isLikeRegExp, isLowesUrl, isLuminosityMetric, isLuminosityUom, isLuxonDateTime, isMacysUrl, isMapToken, isMassMetric, isMassUom, isMetric, isMexicanNewsUrl, isMoment, isNever, isNewsUrl, isNikeUrl, isNorwegianNewsUrl, isNotNull, isNothing, isNull, isNumber, isNumberLike, isNumericArray, isNumericString, isObject, isObjectToken, isOptionalParamFunction, isPhoneNumber, isPowerMetric, isPowerUom, isPressureMetric, isPressureUom, isReadonlyArray, isRecordToken, isRef, isRegExp, isRepoSource, isRepoUrl, isResistance, isResistanceUom, isRetailUrl, isSameTypeOf, isScalar, isSemanticVersion, isSet, isSetToken, isShape, isShapeCallback, isSimpleContainerToken, isSimpleContainerTokenTuple, isSimpleScalarToken, isSimpleScalarTokenTuple, isSimpleToken, isSimpleTokenTuple, isSingletonToken, isSocialMediaProfileUrl, isSocialMediaUrl, isSouthKoreanNewsUrl, isSpanishNewsUrl, isSpecificConstant, isSpeedMetric, isSpeedUom, isString, isStringArray, isSwissNewsUrl, isSymbol, isTailwindColor, isTailwindColorClass, isTailwindColorName, isTailwindColorTarget, isTailwindColorWithLuminosity, isTailwindColorWithLuminosityAndOpacity, isTailwindModifier, isTargetUrl, isTemperatureMetric, isTemperatureUom, isThenable, isThisMonth, isThisWeek, isThisYear, isTimeMetric, isTimeUom, isToday, isTomorrow, isTrimable, isTrue, isTruthy, isTuple, isTupleToken, isTurkishNewsUrl, isTypeOf, isTypeToken, isTypeTuple, isUkNewsUrl, isUndefined, isUnionSetToken, isUnionToken, isUnset, isUom, isUri, isUrl, isUrlPath, isUrlSource, isUsNewsUrl, isUsStateAbbreviation, isUsStateName, isVoltageMetric, isVoltageUom, isVolumeMetric, isVolumeUom, isWalgreensUrl, isWalmartUrl, isWayfairUrl, isWeakMapToken, isWholeFoodsUrl, isYesterday, isYouTubeCreatorUrl, isYouTubeFeedHistoryUrl, isYouTubeFeedUrl, isYouTubePlaylistUrl, isYouTubePlaylistsUrl, isYouTubeShareUrl, isYouTubeSubscriptionsUrl, isYouTubeTrendingUrl, isYouTubeUrl, isYouTubeVideoUrl, isYouTubeVideosInPlaylist, isZaraUrl, isZipCode, isZipCode5, isZipPlus4, joinWith, jsonValue, jsonValues, keysOf, kindLiteral, last, list, literal, logicalReturns, lookupCountryAlpha2, lookupCountryAlpha3, lookupCountryCode, lookupCountryName, lowercase, mergeObjects, mergeScalars, mergeTuples, nameLiteral, narrow, never, omit, optional, optionalOrNull, or, orNull, pathJoin, pluralize, removePhoneCountryCode, removeTailwindModifiers, removeUrlProtocol, result, retain, retainAfter, retainAfterInclusive, retainChars, retainUntil, retainUntilInclusive, retainWhile, reverse, rightWhitespace, shape, sharedKeys, shift, simpleContainerToken, simpleContainerTokenToTypeToken, simpleContainerType, simpleScalarToken, simpleScalarTokenToTypeToken, simpleScalarType, simpleToken, simpleType, simpleUnionTokenToTypeToken, slice, split, startsWith, stripAfter, stripBefore, stripChars, stripLeading, stripParenthesis, stripSurround, stripTrailing, stripUntil, stripWhile, surround, takeNumericCharacters, takeProp, toCamelCase, toKebabCase, toNumber, toNumericArray, toPascalCase, toSnakeCase, toString, toUppercase, trim, trimEnd, trimLeft, trimRight, trimStart, truncate, tuple, twColor, unbox, uncapitalize, union, unionize, unique, uniqueKeys, uppercase, urlMeta, valuesOf, widen, withDefaults, withKeys, withoutKeys, withoutValue, wrapFn, youtubeEmbed, youtubeMeta };
36293
+ export { ACCELERATION_METRICS_LOOKUP$2 as ACCELERATION_METRICS_LOOKUP, ALPHA_CHARS, AMAZON_BOOKS, AMAZON_DNS$2 as AMAZON_DNS, APPLE_DNS$2 as APPLE_DNS, AREA_METRICS_LOOKUP$2 as AREA_METRICS_LOOKUP, AUSTRALIAN_NEWS$2 as AUSTRALIAN_NEWS, type Abs, type AbsMaybe, type Acceleration, type AccelerationMetrics, type AccelerationUom, type Add, type AddKeyValue, type AddUrlPathSegment, type AfterFirst, type AfterFirstChar, type AllCaps, type AllExtend, type AllLiteral, type AllNumericLiterals, type AllStringLiterals, type AllowNonTupleWhenSingular, type Alpha, type AlphaChar, type AlphaNumeric, type AlphaNumericChar, type AmPm, type AmPmCase, type AmazonUrl, type And, type AnyArray, type AnyFunction, type AnyObject, type AnyQueryParams, type Api, type ApiCallback, type ApiConfig, type ApiEscape, type ApiHandler, type ApiOptions, type ApiReturn, type ApiState, type ApiStateInitializer, type ApiSurface, type AppendRight, type AppleUrl, type AreSameLength, type AreSameType, type Area, type AreaMetrics, type AreaUom, type AriaDocStructureRoles, type AriaLandmarkRoles, type AriaLiveRegionRoles, type AriaRole, type AriaWidgetRoles, type AriaWindowRoles, type ArrayElementType, type ArrayToken, type ArrayTypeDefn, type As, type AsApi, type AsArray, type AsBoolean, type AsChoice, type AsClassSelector, type AsContainer, type AsDefined, type AsDictionary, type AsDoneFn, type AsErr, type AsErrKind, type AsError, type AsError__Meta, type AsEscapeFunction, type AsFinalizedConfig, type AsFnMeta, type AsFunction, type AsIndexOf, type AsIp6Prefix, type AsLeft, type AsLeftRight, type AsList, type AsLiteralFn, type AsNarrowingFn, type AsNegativeNumber, type AsNonNull, type AsNumber, type AsNumberWhenPossible, type AsNumericArray, type AsObject, type AsObjectKey, type AsObjectKeys, type AsOptionalParamFn, type AsPropertyKey, type AsRecord, type AsRef, type AsRight, type AsSomething, type AsString, type AsStringUnion, type AsTuple, type AsType, type AsUnion, type AsVueComputedRef, type AsyncFunction, type AtomicToken, type AustralianNewsCompanies, type AustralianNewsUrls, type AvailableConverters, type Awaited$1 as Awaited, BELGIUM_NEWS$2 as BELGIUM_NEWS, BEST_BUY_DNS$2 as BEST_BUY_DNS, BLOOD_MARKERS_LOOKUP, type BareCssSelector, type BaseTypeToken, type BeforeLast, type BelgianNewsCompanies, type BelgianNewsUrls, type BespokeLiteral, type BespokeUnion, type BestBuyUrl, type BooleanLike, type Box, type BoxValue, type BoxedFnParams, type Bracket, type Break, CANADIAN_NEWS$2 as CANADIAN_NEWS, CHEWY_DNS$2 as CHEWY_DNS, CHINESE_NEWS$2 as CHINESE_NEWS, COMMA, COMMON_OBJ_PROPS, CONSONANTS$2 as CONSONANTS, COSTCO_DNS$2 as COSTCO_DNS, CSS_NAMED_COLORS$2 as CSS_NAMED_COLORS, type CSV, CURRENT_METRICS_LOOKUP$2 as CURRENT_METRICS_LOOKUP, CVS_DNS$2 as CVS_DNS, type CamelCase, type CamelKeys, type CanadianNewsCompanies, type CanadianNewsUrls, type CapFirstAlpha, type CapitalizeWords, type Cardinality, type Cardinality0, type Cardinality1, type CardinalityExplicit, type CardinalityFilter0, type CardinalityFilter1, type CardinalityIn, type CardinalityInput, type CardinalityNode, type CardinalityOut, type Chars, type ChewyUrl, type ChineseNewsCompanies, type ChineseNewsUrls, type Choice, type ChoiceApi, type ChoiceApiConfig, type ChoiceApiOptions, type ChoiceBuilder, type ChoiceCallback, type ChoiceValue, type CivilianHours, type CivilianTime, type CivilianTimeOptions, type ClosingBracket, type ClosingMark, type ClosingMarkPlus, type ColorFnOptOpacity, type ColorFnValue, type ColorParam, type CombinedKeys, type CommonHtmlElement, type CommonObjProps, type ComparatorOperation, type Compare$1 as Compare, type Comparison, type CompleteError, type Concat, type ConfiguredMap, type Consonant, type Consonants, type Constant$3 as Constant, type Constructor, type Container, type ContainerBlockKey, type ContainerKeyGuarantee, type ContainerToken, type Contains, type ContainsAll, type Conversion, type ConversionTuple, type ConvertSet, type ConvertTypeOf, type ConvertWideTokenNames, type ConverterCoverage, type ConverterDefn, type CostCoUrl, type CostcoUrl, type CountryPhoneNumber, type Cr, type CrThenIndent, type CreateChoice, type CreateDictHash, type CreateDictShape, type CreateKV, type CreateLookup, type CssAbsolutionPositioningProperties, type CssAlignContent, type CssAlignItems, type CssAlignProperties, type CssAlignSelf, type CssAnimation, type CssAnimationComposition, type CssAnimationDelay, type CssAnimationDirection, type CssAnimationDuration, type CssAnimationFillMode, type CssAnimationIterationCount, type CssAnimationPlayState, type CssAnimationProperties, type CssAnimationTimingFunction, type CssAppearance, type CssAspectRatio, type CssBackdropFilter, type CssBackgroundProperties, type CssBorderCollapse, type CssBorderImageRepeat, type CssBorderImageSource, type CssBorderInlineSizing, type CssBorderProperties, type CssBorderStyle, type CssBorderWidth, type CssBoxAlign, type CssBoxDecorationBreak, type CssBoxProperties, type CssBoxShadow, type CssBoxSizing, type CssCalc, type CssClamp, type CssClassSelector, type CssColor, type CssColorFn, type CssColorLight, type CssColorMix, type CssColorMixLight, type CssColorModel, type CssColorSpace, type CssColorSpacePrimary, type CssContent, type CssCursor, type CssDefinition, type CssDisplay, type CssDisplayStatePseudoClasses, type CssFlex, type CssFlexBasis, type CssFlexDirection, type CssFlexFlow, type CssFlexGrow, type CssFlexShrink, type CssFloat, type CssFontFamily, type CssFontFeatureSetting, type CssFontKerning, type CssFontLanguageOverride, type CssFontPalette, type CssFontStyle, type CssFontSynthesis, type CssFontWeight, type CssFontWidth, type CssFunctionalPseudoClass, type CssGap, type CssGlobal, type CssHangingPunctuation, type CssHexColor, type CssHsb, type CssHsl, type CssIdSelector, type CssImageOrientation, type CssImageRendering, type CssImageResolution, type CssInputPseudoClasses, type CssJustifyContent, type CssJustifyItems, type CssJustifyProperties, type CssJustifySelf, type CssKeyframeCallback, type CssKeyframeTimestamp, type CssKeyframeTimestampSuggest, type CssLetterSpacing, type CssLinguisticPseudoClasses, type CssListStyle, type CssLocationPseudoClasses, type CssMargin, type CssMarginBlock, type CssMarginBlockEnd, type CssMarginBlockStart, type CssMarginBottom, type CssMarginInline, type CssMarginInlineEnd, type CssMarginInlineStart, type CssMarginLeft, type CssMarginProperties, type CssMarginRight, type CssMarginTop, type CssMixBlendMode, type CssNamedColors, type CssNamedSizes, type CssObjectFit, type CssObjectPosition, type CssOffsetDistance, type CssOffsetPath, type CssOffsetPosition, type CssOffsetProperties, type CssOkLch, type CssOpacity, type CssOutline, type CssOutlineColor, type CssOutlineOffset, type CssOutlineProperties, type CssOutlineStyle, type CssOutlineWidth, type CssOverflowAnchor, type CssOverflowBlock, type CssOverflowClipMargin, type CssOverflowInline, type CssOverflowProperties, type CssOverflowX, type CssOverflowY, type CssPadding, type CssPaddingBlock, type CssPaddingBlockEnd, type CssPaddingBlockStart, type CssPaddingBottom, type CssPaddingInline, type CssPaddingInlineEnd, type CssPaddingInlineStart, type CssPaddingLeft, type CssPaddingProperties, type CssPaddingRight, type CssPaddingTop, type CssPerspectiveOrigin, type CssPlaceContent, type CssPlaceItems, type CssPlaceProperties, type CssPlaceSelf, type CssPointerEvent, type CssPosition, type CssProperty, type CssPseudoClass, type CssPseudoClassDefn, type CssResourceStatePseudoClasses, type CssRgb, type CssRgba, type CssRotation, type CssRound, type CssSelector, type CssSelectorOptions, type CssSizing, type CssSizingFunction, type CssSizingLight, type CssStroke, type CssStrokeDasharray, type CssStrokeProperties, type CssTagSelector, type CssTextAlign, type CssTextDecorationLine, type CssTextDecorationStyle, type CssTextIndent, type CssTextJustify, type CssTextOrientation, type CssTextOverflow, type CssTextPosition, type CssTextProperties, type CssTextRendering, type CssTextTransform, type CssTextWrap, type CssTextWrapMode, type CssTextWrapStyle, type CssTimePseudoClasses, type CssTiming, type CssTransform, type CssTransformBox, type CssTransformOrigin, type CssTransformProperties, type CssTransformStyle, type CssTranslate, type CssTranslateFn, type CssTreePseudoClasses, type CssUserActionPseudoClasses, type CssVar, type CssVarWithFallback, type CssWhiteSpace, type CssWhiteSpaceCollapse, type CssWordBreak, type CssWritingMode, type CsvFormat, type CsvToJsonTuple, type CsvToStrUnion, type CsvToTuple, type CsvToTupleStr, type CsvToUnion, type Current, type CurrentMetrics, type CurrentUom, type CvsUrl, DANISH_NEWS$2 as DANISH_NEWS, DEFAULT_MANY_TO_ONE_MAPPING, DEFAULT_ONE_TO_MANY_MAPPING, DEFAULT_ONE_TO_ONE_MAPPING, DELL_DNS$2 as DELL_DNS, DISTANCE_METRICS_LOOKUP$2 as DISTANCE_METRICS_LOOKUP, DUTCH_NEWS$2 as DUTCH_NEWS, type DanishNewsCompanies, type DanishNewsUrls, type DashToSnake, type DashUppercase, type Date$2 as Date, type DateSeparator, type DateThenMonth, type DateThenMonthThenYear, type DateTime, type DateTimeMinutes, type DateTimeSeconds, type DayOfWeek, type DayofWeekFull, type DecomposeMapConfig, type Decrement, type Default, type DefaultManyToOneMapping, type DefaultOneToManyMapping, type DefaultOneToOneMapping, type DefineObject, type DefineObjectApi, type DefineStatelessApi, type Defined, type DellUrl, type Delta, type DialCountryCode, type Dict, type DictArray, type DictArrayFilterCallback, type DictArrayKv, type DictChangeValue, type DictFromKv, type DictKvTuple, type DictTypeDefinition, type Dictionary, type DictionaryTypeDefn, type Digit, type DigitNonZero, type Digital, type DigitalLiteral, type Digitize, type Distance, type DistanceMetrics, type DistanceUom, type DnsName, type DoesExtend, type DoesNotExtend, type DomainName, type DoneFnTuple, type DotPathFor, type DoubleQuote, type DropChars, type DutchNewsCompanies, type DutchNewsUrls, EBAY_DNS$2 as EBAY_DNS, ENERGY_METRICS_LOOKUP$2 as ENERGY_METRICS_LOOKUP, ETSY_DNS$2 as ETSY_DNS, type EbayUrl, type ElementOf, type Email, type EmptyObject, type EmptyString, type EmptyStringOr, type EndingWithTypeGuard, type EndsWith, type Energy, type EnergyMetrics, type EnergyUom, type EnsureKeys, type EnsureLeading, type EnsureLeadingEvery, type EnsureSurround, type EnsureTrailing, type EqualTo, type Equals, type Err, type ErrFrom, type ErrInput, type ErrorCondition, type ErrorConditionHandler, type ErrorConditionShape, type EscapeFunction, type EsotericHtmlElement, type EtsyUrl, type Exif, type ExifAttributionInfo, type ExifCameraInfo, ExifCompression, ExifContrast, type ExifDateTimeInfo, ExifEmbedPolicy, type ExifExtraneous, ExifFlashValues, ExifGainControl, type ExifGps, ExifLightSource, type ExifPhotoContext, ExifPreviewColorSpace, ExifSaturation, ExifSceneCaptureType, ExifSharpness, ExifSubjectDistance, type ExpandDictionary, type ExpandRecursively, type ExpandTuple, type ExpandUnion, type ExplicitlyEmptyObject, type Extends, type ExtendsAll, type ExtendsNone, type ExtendsSome, FALSY_TYPE_KINDS$1 as FALSY_TYPE_KINDS, FALSY_VALUES, FRENCH_NEWS$2 as FRENCH_NEWS, FREQUENCY_METRICS_LOOKUP$2 as FREQUENCY_METRICS_LOOKUP, type Fail, type FalsyValue, type FifoQueue, type Filter, type FilterByProp, type FilterLiterals, type FilterProps, type FilterWideTypes, type FinalizedMapConfig, type Find, type FindFirstIndex, type FindIndexMetaOfString, type FindIndexMetaOfTuple, type FindIndexes, type FindIndexesWithMeta, type FindLastIndex, type Finder, type First, type FirstChar, type FirstKey, type FirstKeyValue, type FirstOfEach, type FirstString, type FixedLengthArray, type Flatten, type FlattenUnion, type FluentApi, type FluentFn, type FluentState, type FnAllowingProps, type FnArgsDefn, type FnDefn, type FnFrom, type FnMeta, type FnPropertiesDefn, type FnProps, type FnReturnTypeDefn, type FnToken, type FnWithDescription, type FnWithProps, type FontProperties, type FrenchNewsCompanies, type FrenchNewsUrls, type Frequency, type FrequencyMetrics, type FrequencyUom, type FromDefineObject, type FromDefn, type FromDictArray, type FromLiteralTokens, type FromMaybeRef, type FromRecordKeyDefn, type FromTypeDefn, type FromWideTokens, type FullDate, type FullWidthQuotation, type FullyQualifiedUrl, GERMAN_NEWS$2 as GERMAN_NEWS, GITHUB_INSIGHT_CATEGORY_LOOKUP$1 as GITHUB_INSIGHT_CATEGORY_LOOKUP, type GeneratorToken, type GermanNewsCompanies, type GermanNewsUrls, type Get$1 as Get, type GetEach, type GetEachOptions, type GetEscapeFunction, type GetOptions, type GetPhoneCountryCode, type GetPhoneNumberType, type GetTypeOf, type GetUrlPath, type GetUrlPort, type GetUrlProtocol, type GetUrlProtocolPrefix, type GetUrlQueryParams, type GetUrlSource, type GetYouTubePageType, type GitRef, type GithubActionsUrl, type GithubInsightPageType, type GithubInsightUrl, type GithubOrgUrl, type GithubRepoBranchesUrl, type GithubRepoDiscussionUrl, type GithubRepoDiscussionsUrl, type GithubRepoIssueUrl, type GithubRepoIssuesListUrl, type GithubRepoProjectUrl, type GithubRepoProjectsUrl, type GithubRepoPullRequestUrl, type GithubRepoPullRequestsUrl, type GithubRepoReleaseTagUrl, type GithubRepoReleasesUrl, type GithubRepoTagsUrl, type GithubRepoUrl, type GithubUrl, HASH_TABLE_ALPHA_LOWER, HASH_TABLE_ALPHA_UPPER, HASH_TABLE_CHAR, HASH_TABLE_DIGIT, HASH_TABLE_OTHER, HASH_TABLE_SPECIAL, HASH_TABLE_WIDE, HM_DNS$2 as HM_DNS, HOME_DEPOT_DNS$2 as HOME_DEPOT_DNS, type HandMUrl, type Handle, type HandleDoneFn, type HasArray, type HasCharacters, type HasEscapeFunction, type HasIndex, type HasIpAddress, type HasNetworkProtocolReference, type HasOtherCharacters, type HasParameters, type HasPhoneCountryCode, type HasProp, type HasQueryParameter, type HasRequiredProps, type HasSameKeys, type HasSameValues, type HasUnionType, type HasUppercase, type HasUrlPath, type HasUrlSource, type HasWideValues, type HaveSameNumericSign, type HexColor, type Hexadecimal, type HexadecimalChar, type HomeDepotUrl, type HoursMinutes, type HoursMinutes12, type HoursMinutesSeconds, type HoursMinutesSeconds12, type HoursMinutesSecondsMilliseconds, type HoursMinutesSecondsMilliseconds12, type HtmlBodyElement, type HtmlElement, type HtmlFrameworkElement, type HtmlFunctionalElement, type HtmlHeaderElement, type HtmlInputElement, type HtmlListElement, type HtmlMediaElement, type HtmlStructuralElement, type HtmlSymantecElement, type HtmlTableElement, IKEA_DNS$2 as IKEA_DNS, IMAGE_FORMAT_LOOKUP$1 as IMAGE_FORMAT_LOOKUP, INDIAN_NEWS$2 as INDIAN_NEWS, type IP6Multicast, type IP6Unicast, IPv4, IPv6$1 as IPv6, ISO3166_1$2 as ISO3166_1, ITALIAN_NEWS$2 as ITALIAN_NEWS, type IdentityFn, type IdentityFunction, type If, type IfAllExtend, type IfAllLiteral, type IfEqual, type IfEquals, type IfErrorCondition, type IfLeft, type IfLength, type IfLiteralKind, type IfNever, type IfUnset, type IfUnsetOrUndefined, type Iff, type IkeaUrl, type ImgFormat, type ImgFormatWeb, type Immutable, type Increment, type Indent$1 as Indent, type Indent2, type Indent4, type IndentSpaces, type IndentTab, type IndexOf, type Indexable, type IndexableObject, type IndianNewsCompanies, type IndianNewsUrls, type InlineSvg, type InternationalPhoneNumber, type Intersect$1 as Intersect, type IntersectAll, type IntersectWithAll, type IntersectingKeys, type Intersection, type InvertNumericSign, type Ip4Address, type Ip4Netmask, type Ip4Netmask16, type Ip4Netmask24, type Ip4Netmask32, type Ip4Netmask8, type Ip4NetmaskSuggestion, type Ip4Octet, type Ip6Address, type Ip6AddressFull, type Ip6AddressLoose, type Ip6Group, type Ip6GroupExpansion, type Ip6Loopback, type Ip6Subnet, type Ip6SubnetPrefix, type IsAllCaps, type IsAllLowercase, type IsArray, type IsBoolean, type IsBooleanLiteral, type IsCapitalized, type IsComputedRef, type IsContainer, type IsCssHexadecimal, type IsDefined, type IsDictionaryDefinition, type IsDomainName, type IsDotPath, type IsEmptyContainer, type IsEmptyObject, type IsEmptyString, type IsEqual, type IsErr, type IsErrorCondition, type IsEscapeFunction, type IsFalse, type IsFalsy, type IsFloat, type IsFnWithParams, type IsFunction, type IsGreaterThan, type IsGreaterThanOrEqual, type IsHexadecimal, type IsInteger, type IsIp4Address, type IsIp4Octet, type IsIp6Address, type IsIp6HexGroup, type IsIpAddress, type IsIso8601DateTime, type IsIsoDate, type IsIsoExplicitDate, type IsIsoImplicitDate, type IsIsoTime, type IsJsDate, type IsLength, type IsLessThan, type IsLessThanOrEqual, type IsLiteral, type IsLiteralFn, type IsLiteralKind, type IsLiteralUnion, type IsLowerAlpha, type IsLuxonDateTime, type IsMoment, type IsNarrowingFn, type IsNegativeNumber, type IsNever, type IsNonEmptyContainer, type IsNonEmptyObject, type IsNonLiteralUnion, type IsNotEqual, type IsNothing, type IsNull, type IsNumber, type IsNumberLike, type IsNumericLiteral, type IsObject, type IsObjectLiteral, type IsOk, type IsOptionalLiteral, type IsOptionalScalar, type IsPhoneNumber, type IsPositiveNumber, type IsReadonlyArray, type IsReadonlyObject, type IsResult, type IsScalar, type IsSingleChar, type IsSingleSided, type IsSingularNoun, type IsStrictPromise, type IsString, type IsStringLiteral, type IsSymbol, type IsThenable, type IsTrue, type IsTruthy, type IsTuple, type IsTypeToken, type IsUndefined, type IsUnion, type IsUnionArray, type IsUnset, type IsUrl, type IsValidDotPath, type IsValidIndex, type IsVueRef, type IsWideContainer, type IsWideScalar, type IsWideType, type IsWideUnion, type Iso3166Alpha2Lookup, type Iso3166Alpha3Lookup, type Iso3166CodeLookup, type Iso3166CountryLookup, type Iso3166_1_Alpha2, type Iso3166_1_Alpha3, type Iso3166_1_CountryCode, type Iso3166_1_CountryName, type Iso3166_1_Lookup, type Iso3166_1_Token, type Iso8601, type Iso8601Date, type Iso8601DateTime, type Iso8601Time, type Iso8601Year, type ItalianNewsCompanies, type ItalianNewsUrls, JAPANESE_NEWS$2 as JAPANESE_NEWS, type JapaneseNewsCompanies, type JapaneseNewsUrls, type Join, type Joiner, type JsonValue, type JsonValues, type JustFunction, KROGER_DNS$2 as KROGER_DNS, type KebabCase, type KebabKeys, type KeyOf, type KeyValue, type KeyframeApi, type Keys, type KeysEqualValue, type KeysNotEqualValue, type KeysWithValue, type KeysWithoutValue, type KindFrom, type KlassMeta, type KrogerUrl, type KvFn, type KvFnDefn, type KvFrom, type KvTuple, LITERAL_TYPE_KINDS$1 as LITERAL_TYPE_KINDS, LOWER_ALPHA_CHARS$2 as LOWER_ALPHA_CHARS, LOWES_DNS$2 as LOWES_DNS, LUMINOSITY_METRICS_LOOKUP$2 as LUMINOSITY_METRICS_LOOKUP, type Last, type LastChar, type LastInUnion$1 as LastInUnion, type LastOfEach, type LeadingNonAlpha, type Left, type LeftContains, type LeftDoubleMark, type LeftEquals, type LeftExtends, type LeftHeavyDoubleTurned, type LeftHeavySingleTurned, type LeftIncludes, type LeftLowDoublePrime, type LeftReversedDoublePrime, type LeftRight, type LeftRight__Operations, type LeftSingleMark, type LeftWhitespace, type Length, type LessThan, type LessThanOrEqual$1 as LessThanOrEqual, type LifoQueue, type LikeRegExp, type List, type LiteralFn, type LocalPhoneNumber, type LogicFunction, type LogicalCombinator, type LogicalReturns, type LowerAllCaps, type LowerAlphaChar, type LowesUrl, type Luminosity, type LuminosityMetrics, type LuminosityUom, type LuxonJs, MACYS_DNS$2 as MACYS_DNS, MARKED$2 as MARKED, MASS_METRICS_LOOKUP$2 as MASS_METRICS_LOOKUP, MEXICAN_NEWS$2 as MEXICAN_NEWS, MONTH_ABBR$1 as MONTH_ABBR, MONTH_NAME$1 as MONTH_NAME, type MacysUrl, type MakeKeysOptional, type MakeKeysRequired, type MakePropsMutable, type ManyToMany, type ManyToOne, type ManyToZero, type MapCard, MapCardinality, type MapCardinalityFrom, type MapCardinalityIllustrated, type MapConfig, type MapCoverage, type MapError, type MapFn, type MapFnInput, type MapFnOutput, type MapIR, type MapInput, type MapInputFrom, type MapKeyDefn, type MapOR, type MapOutput, type MapOutputFrom, type MapTo, type MapToken, type MapValueDefn, type Mapper, type MapperApi, type Marked$5 as Marked, type Mass, type MassMetrics, type MassUom, type MaxLength, type MaybeError, type MaybeRef, type Merge, type MergeKVs, type MergeObjects, type MergeScalars, type MergeTuples, type Metric, type MexicanNewsCompanies, type MexicanNewsUrls, type MilitaryHours, type MilitaryTime, type MilitaryTimeOptions, type Milliseconds, type Minutes, type MomentJs, type MonthAbbr, type MonthAbbrThenDate, type MonthAbbrThenDateAndYear, type MonthDay, type MonthName, type MonthNumeric, type MonthPostfix, type MonthThenDate, type MonthThenDateThenYear, type MonthThenDate_Simple, type MultiChoiceCallback, type MultipleChoice, type Mutable, type MutableProps, type MutablePropsExclusive, NARROW_CONTAINER_TYPE_KINDS$1 as NARROW_CONTAINER_TYPE_KINDS, NETWORK_PROTOCOL_LOOKUP$2 as NETWORK_PROTOCOL_LOOKUP, NIKE_DNS$2 as NIKE_DNS, NON_ZERO_NUMERIC_CHAR$2 as NON_ZERO_NUMERIC_CHAR, NORWEGIAN_NEWS$2 as NORWEGIAN_NEWS, NOT_APPLICABLE$1 as NOT_APPLICABLE, NOT_DEFINED$1 as NOT_DEFINED, NO_DEFAULT_VALUE$2 as NO_DEFAULT_VALUE, NUMERIC_CHAR$2 as NUMERIC_CHAR, NUMERIC_DIGIT$1 as NUMERIC_DIGIT, type NamedColor, type NamedColorMinimal, type NamedColor_Blue, type NamedColor_Brown, type NamedColor_Cyan, type NamedColor_Gray, type NamedColor_Green, type NamedColor_Orange, type NamedColor_Pink, type NamedColor_Purple, type NamedColor_Red, type NamedColor_White, type NamedColor_Yellow, type NamingConvention, type Narrow$1 as Narrow, type NarrowDictProps, type NarrowObject, type Narrowable, type NarrowableDefined, type NarrowableScalar, type NarrowingFn, type NarrowlyContains, type NegDelta, type Negative, type NetworkProtocol, type NetworkProtocolPrefix, Never, type NewsUrls, type NextDigit, type NikeUrl, type NoDefaultValue$2 as NoDefaultValue, type NonAlphaChar, type NonArray, type NonNumericKeys, type NonStringKeys, type NonZeroNumericChar, type NorwegianNewsCompanies, type NorwegianNewsUrls, type Not, type NotApplicable$1 as NotApplicable, type NotDefined$1 as NotDefined, type NotEqual, type NotLength, type NotNull, type Nothing, type NumberLike, type NumericChar, type NumericCharOneToFive, type NumericCharOneToFour, type NumericCharOneToThree, type NumericCharOneToTwo, type NumericCharZeroToFive, type NumericCharZeroToFour, type NumericCharZeroToOne, type NumericCharZeroToThree, type NumericCharZeroToTwo, type NumericComparatorOperation, type NumericKeys, type NumericRange, type NumericSign, type NumericSort, type NumericSupportOptions, OPTION, type ObjKeyDefn, type ObjectKey, type ObjectToCssString, type ObjectToJsString, type ObjectToJsonString, type ObjectToKeyframeString, type ObjectToTuple, type ObjectToken, type Ok, type OkFrom, type OldSchoolHtmlElement, type OnPass, type OnPassRemap, type OneToMany, type OneToOne, type OneToZero, type OpeningBracket, type OpeningMark, type OpeningMarkPlus, type Opt$1 as Opt, type OptCr, type OptCrThenIndent, type OptDictProps, type OptModifier, type OptPercent, type OptRequired, type OptSpace, type OptSpace2, type OptSpace4, type OptUrlQueryParameters, type OptWhitespace, type Optional, type OptionalKeys, type OptionalParamFn, type OptionalProps, type OptionalSimpleScalarTokens, type OptionalSpace, type Or, PHONE_COUNTRY_CODES$1 as PHONE_COUNTRY_CODES, PHONE_FORMAT$1 as PHONE_FORMAT, PLURAL_EXCEPTIONS$2 as PLURAL_EXCEPTIONS, PLURAL_EXCEPTIONS_OLD, POWER_METRICS_LOOKUP$2 as POWER_METRICS_LOOKUP, PRESSURE_METRICS_LOOKUP$2 as PRESSURE_METRICS_LOOKUP, PROXMOX_CT_STATE, type ParamsForComparison, type ParseInt, type ParseToken, type PartialError, type PartialErrorDefn, type PascalCase, type PascalKeys, type Passthrough, type PathJoin, type PhoneAreaCode, type PhoneCountryCode, type PhoneCountryLookup, type PhoneFormat, type PhoneNumber, type PhoneNumberDelimiter, type PhoneNumberType, type PhoneShortCode, type PluralExceptions, type Pluralize, type PlusMinus, type Pop, type PortSpecifierOptions, type Power, type PowerMetrics, type PowerUom, type Prepend, type PrependAll, type Pressure, type PressureMetrics, type PressureUom, type PriorDigit, type PrivateKey, type PrivateKeyOf, type PrivateKeys, type PromiseAll, type PropertyChar, type ProtocolOptions, type ProxyError, type PublicKeyOf, type PublicKeys, type Punctuation, type Push, type QuotationMark, type QuotationMarkPlus, REPO_PAGE_TYPES$1 as REPO_PAGE_TYPES, REPO_SOURCES$2 as REPO_SOURCES, REPO_SOURCE_LOOKUP$3 as REPO_SOURCE_LOOKUP, RESISTANCE_METRICS_LOOKUP$2 as RESISTANCE_METRICS_LOOKUP, RESULT$1 as RESULT, type RawPhoneNumber, type ReadonlyKeys, type ReadonlyProps, type RealizedErr, type RecordKeyDefn, type RecordKeyWideTokens, type RecordToken, type RecordValueTypeDefn, type ReduceValues, type RegularFn$1 as RegularFn, type Relate, type RelativeUrl, type RemoveEmpty, type RemoveFnProps, type RemoveFromEnd, type RemoveFromStart, type RemoveHttpProtocol, type RemoveIndex, type RemoveIndexKeys, type RemoveMarked, type RemoveNetworkProtocol, type RemoveNever, type RemovePhoneCountryCode, type RemoveStart, type RemoveUndefined, type RemoveUrlPort, type RemoveUrlSource, type Repeat, type Replace, type ReplaceAll, type ReplaceLast, type RepoPageType, type RepoSource, type RepoUrls, type RequireProps, type RequiredKeys, type RequiredKeysTuple, type RequiredProps, type RequiredSimpleScalarTokens, type Resistance, type ResistanceMetrics, type ResistanceUom, type Result, type ResultApi, type ResultErr, type ResultTuple, type RetailUrl, type Retain, type RetainAfter, type RetainAfterLast, type RetainByProp, type RetainChars, type RetainLiterals, type RetainProps, type RetainUntil, type RetainWhile, type RetainWideTypes, type ReturnTypes, type ReturnValues, type Returns, type ReturnsFalse, type ReturnsTrue, type Reverse, type RgbColor, type RgbaColor, type Right, type RightContains, type RightDoubleMark, type RightEquals, type RightExtends, type RightHeavyDoubleTurned, type RightHeavySingleTurned, type RightIncludes, type RightReversedDoublePrime, type RightSingleMark, type RightWhitespace, type RuntimeUnion, SHAPE_DELIMITER, SHAPE_PREFIXES, SIMPLE_ARRAY_TOKENS$2 as SIMPLE_ARRAY_TOKENS, SIMPLE_CONTAINER_TOKENS, SIMPLE_DICT_TOKENS$2 as SIMPLE_DICT_TOKENS, SIMPLE_DICT_VALUES$2 as SIMPLE_DICT_VALUES, SIMPLE_FN_TOKENS, SIMPLE_MAP_KEYS$2 as SIMPLE_MAP_KEYS, SIMPLE_MAP_TOKENS$2 as SIMPLE_MAP_TOKENS, SIMPLE_MAP_VALUES$2 as SIMPLE_MAP_VALUES, SIMPLE_OPT_SCALAR_TOKENS$2 as SIMPLE_OPT_SCALAR_TOKENS, SIMPLE_SCALAR_TOKENS$2 as SIMPLE_SCALAR_TOKENS, SIMPLE_SET_TOKENS$2 as SIMPLE_SET_TOKENS, SIMPLE_SET_TYPES$2 as SIMPLE_SET_TYPES, SIMPLE_TOKENS, SIMPLE_UNION_TOKENS$2 as SIMPLE_UNION_TOKENS, SINGULAR_NOUN_ENDINGS$1 as SINGULAR_NOUN_ENDINGS, SOCIAL_MEDIA$2 as SOCIAL_MEDIA, SOUTH_KOREAN_NEWS$2 as SOUTH_KOREAN_NEWS, SPANISH_NEWS$2 as SPANISH_NEWS, SPEED_METRICS_LOOKUP$2 as SPEED_METRICS_LOOKUP, SWISS_NEWS$2 as SWISS_NEWS, type Scalar, type ScalarCallback, type ScalarNotSymbol, type Second, type SecondOfEach, type Seconds, type SemanticVersion, type SerializedComma, type SetCandidate, type SetToken, type Shape, type ShapeApi, ShapeApiImplementation, type ShapeApi__Scalars, type ShapeCallback, type ShapeSuggest, type ShapeTupleOrUnion, type SharedKeys, type Shift, type ShortDate, type SimpleArrayToken, type SimpleContainerToken, type SimpleDictToken, type SimpleMapToken, type SimpleScalarToken, type SimpleSetToken, type SimpleToken, type SimpleType, type SimpleTypeArray, type SimpleTypeDict, type SimpleTypeMap, type SimpleTypeScalar, type SimpleTypeSet, type SimpleTypeUnion, type SimpleUnionToken, type SimplifyObject, type SingleQuote, type SingletonClosure, type SingletonToken, type SingularNoun$1 as SingularNoun, type SingularNounEnding, type SizingUnits, type Slice, type SmartMark, type SmartMarkPlus, type SnakeCase, type SnakeKeys, type SocialMediaPlatform, type SocialMediaProfileUrl, type SocialMediaUrl, type Some, type SomeEqual, type SomeExtend, type Something, type SouthKoreanNewsCompanies, type SouthKoreanNewsUrls, type SpanishNewsCompanies, type SpanishNewsUrls, type SpecialChar, type Speed, type SpeedMetrics, type SpeedUom, type Split, type StackFrame, type StackTrace, type StandardMark, type StartingWithTypeGuard, type StartsWith, type StrLen, type StringComparatorOperation, type StringDelimiter, type StringKeys, type StringLength, type StringLiteralFromTuple, type StringLiteralToken, type StringTokenUtilities, type StripAfter, type StripBefore, type StripChars, type StripLeading, type StripLeftNonAlpha, type StripSlash, type StripSurround, type StripSurroundConfigured, type StripTrailing, type StripUntil, type StripWhile, type StrongMap, type StrongMapTransformer, type StrongMapTypes, type StructuredStringType, type Subtract, type Suggest, type SuggestHexadecimal, type SuggestIpAddress, type SuggestNumeric, type Surround, type SurroundWith, type SwissNewsCompanies, type SwissNewsUrls, type SymbolKind, TARGET_DNS$2 as TARGET_DNS, TEMPERATURE_METRICS_LOOKUP$2 as TEMPERATURE_METRICS_LOOKUP, TIME_METRICS_LOOKUP$2 as TIME_METRICS_LOOKUP, type TLD, TOP_LEVEL_DOMAINS$1 as TOP_LEVEL_DOMAINS, TT_Atomics$2 as TT_Atomics, TT_Containers$2 as TT_Containers, TT_Functions$2 as TT_Functions, TT_SEP$1 as TT_SEP, TT_START$2 as TT_START, TT_STOP$2 as TT_STOP, TT_Sets$2 as TT_Sets, TT_Singletons$2 as TT_Singletons, TURKISH_NEWS$2 as TURKISH_NEWS, TW_CHROMA$2 as TW_CHROMA, TW_CHROMA_100, TW_CHROMA_200, TW_CHROMA_300, TW_CHROMA_400, TW_CHROMA_50, TW_CHROMA_500, TW_CHROMA_600, TW_CHROMA_700, TW_CHROMA_800, TW_CHROMA_900, TW_CHROMA_950, TW_COLOR_TARGETS$2 as TW_COLOR_TARGETS, TW_HUE$2 as TW_HUE, TW_HUE_NEUTRAL$2 as TW_HUE_NEUTRAL, TW_HUE_STATIC, TW_HUE_VIBRANT$2 as TW_HUE_VIBRANT, TW_LUMINOSITY$2 as TW_LUMINOSITY, TW_LUMIN_100, TW_LUMIN_200, TW_LUMIN_300, TW_LUMIN_400, TW_LUMIN_50, TW_LUMIN_500, TW_LUMIN_600, TW_LUMIN_700, TW_LUMIN_800, TW_LUMIN_900, TW_LUMIN_950, TW_MODIFIERS, TW_MODIFIERS_CORE$2 as TW_MODIFIERS_CORE, TW_MODIFIERS_ORDER$2 as TW_MODIFIERS_ORDER, TW_MODIFIERS_RELN$2 as TW_MODIFIERS_RELN, TW_MODIFIERS_SIZING$2 as TW_MODIFIERS_SIZING, TYPE_COMPARISONS, TYPE_KINDS, TYPE_OF$2 as TYPE_OF, TYPE_TOKEN_ALL, TYPE_TOKEN_IDENTITIES, TYPE_TOKEN_PARAM_CSV, TYPE_TOKEN_PARAM_DATE, TYPE_TOKEN_PARAM_DATETIME, TYPE_TOKEN_PARAM_STR, TYPE_TOKEN_PARAM_TIME, TYPE_TRANSFORMS, type TZ, type TakeFirst, type TakeLast, type TakeProp, type TargetUrl, type Temperature, type TemperatureMetrics, type TemperatureUom, type Thenable, type Throw, type Time, type TimeInMilliseconds, type TimeInMinutes, type TimeInSeconds, type TimeLike, type TimeMetric, type TimeMetrics, type TimeNomenclature, type TimeResolution, type TimeUom, type Timezone, type ToBoolean, type ToCSV, type ToChoices, type ToContainer, type ToFn, type ToInteger, type ToIntegerOp, type ToJsonValue, type ToNumber, type ToNumericArray, type ToPhoneFormat, type ToString, type ToStringArray, type ToStringLiteral, type ToUnion, type TokenBaseType, type TokenKind, type TokenLiteralType, type TokenizeStringLiteral, type Trim, type TrimLeft, type TrimRight, type Truncate$1 as Truncate, type TruncateAtLen, type TruthyReturns, type Tuple, type TupleDefn, type TupleRange, type TupleToUnion, type TupleToken, type TurkishNewsCompanies, type TurkishNewsUrls, type TwChroma, type TwChroma100, type TwChroma200, type TwChroma300, type TwChroma400, type TwChroma50, type TwChroma500, type TwChroma600, type TwChroma700, type TwChroma800, type TwChroma900, type TwChroma950, type TwChromaLookup, type TwColor, type TwColorOptionalOpacity, type TwColorTarget, type TwColorWithLuminosity, type TwColorWithLuminosityOpacity, type TwHue, type TwLumi100, type TwLumi200, type TwLumi300, type TwLumi400, type TwLumi50, type TwLumi500, type TwLumi600, type TwLumi700, type TwLumi800, type TwLumi900, type TwLumi950, type TwLuminosity, type TwLuminosityLookup, type TwModifier, type TwModifier__Core, type TwModifier__Order, type TwModifier__Reln, type TwModifier__Size, type TwModifiers, type TwNeutralColor, type TwSizeResponsive, type TwStaticColor, type TwTarget__Color, type TwTarget__ColorLuminosity, type TwTarget__ColorLuminosityWithOpacity, type TwTarget__ColorName, type TwTarget__ColorWithOptPrefixes, type TwTarget__Color__Light, type TwVibrantColor, type Type, type TypeDefaultValue, type TypeDefinition, type TypeDefn, type TypeDefnValidations, type TypeErrorInfo, type TypeGuard, type TypeHasDefaultValue, type TypeHasUnderlying, type TypeHasValidations, type TypeIsRequired, type TypeKind, type TypeKindContainer, type TypeKindContainerNarrow, type TypeKindContainerWide, type TypeKindFalsy, type TypeKindLiteral, type TypeKindWide, type TypeOf, type TypeOfExtended, type TypeOfTypeGuard, type TypeOptions, type TypeRequired, type TypeStrength, type TypeToken, type TypeTokenAtomics, type TypeTokenContainers, type TypeTokenFunctions, type TypeTokenKind, type TypeTokenSeparator, type TypeTokenSets, type TypeTokenSingletons, type TypeTokenStart, type TypeTokenStop, type TypeTuple, type TypeUnderlying, type TypedFunction, type TzHourOffset, UK_NEWS$2 as UK_NEWS, UPPER_ALPHA_CHARS$2 as UPPER_ALPHA_CHARS, US_NEWS$2 as US_NEWS, US_STATE_LOOKUP$2 as US_STATE_LOOKUP, US_STATE_LOOKUP_PROVINCES$2 as US_STATE_LOOKUP_PROVINCES, US_STATE_LOOKUP_STRICT, type UkNewsCompanies, type UkNewsUrls, type Unbox, type UndefinedArrayIsUnknown, type UnderlyingType, type UnionArrayToTuple, type UnionClosure, type UnionElDefn, type UnionFilter, type UnionFromProp, type UnionHasArray, type UnionMutate, type UnionMutationOp, type UnionRetain, type UnionSetToken, type UnionShift, type UnionToIntersection, type UnionToTuple$1 as UnionToTuple, type UnionToken, type UnionWithAll, type Unique, type UniqueKeys, type UniqueKeysUnion, type UniqueKv, type UnitType, type Unset, type Uom, type UpperAlphaChar, type UpsertKeyValue, type Uri, type UrlBuilder, type UrlMeta, type UrlOptions, type UrlPath, type UrlPort, type UrlQueryParameters, type UrlsFrom, type UsNewsCompanies, type UsNewsUrls, type UsStateAbbrev, type UsStateName, VOLTAGE_METRICS_LOOKUP$2 as VOLTAGE_METRICS_LOOKUP, VOLUME_METRICS_LOOKUP$2 as VOLUME_METRICS_LOOKUP, type ValidKey, type Validate, type ValidationFunction, type ValueAtDotPath, type ValueCallback, type ValueOrReturnValue, type Values, type VariableChar, type Voltage, type VoltageMetrics, type VoltageUom, type Volume, type VolumeMetrics, type VolumeUom, type VueComputedRef, type VueRef, WALGREENS_DNS$2 as WALGREENS_DNS, WALMART_DNS$2 as WALMART_DNS, WAYFAIR_DNS$2 as WAYFAIR_DNS, WHITESPACE_CHARS$2 as WHITESPACE_CHARS, WHOLE_FOODS_DNS$2 as WHOLE_FOODS_DNS, WIDE_CONTAINER_TYPE_KINDS$1 as WIDE_CONTAINER_TYPE_KINDS, WIDE_TYPE_KINDS$1 as WIDE_TYPE_KINDS, type WalgreensUrl, type WalmartUrl, type WayFairUrl, type WeakMapKeyDefn, type WeakMapToken, type WeakMapValueDefn, type WhenNever, type WhereLeft, type Whitespace, type WholeFoodsUrl, WideAssignment, type WideContainerNames, type WideTokenNames, type WideTypeName, type Widen, type WidenContainer, type WidenLiteral, type WidenScalar, type WidenTuple, type WidenUnion, type WidenValues, type WithDefault, type WithKeys, type WithNumericKeys, type WithStringKeys, type WithValue, type WithoutKeys, type WithoutValue, type WrapperFn, type YMD, type Year, type YouTubeCreatorUrl, type YouTubeEmbedUrl, type YouTubeFeedType, type YouTubeFeedUrl, type YouTubeHistoryUrl, type YouTubeHome, type YouTubeLikedPlaylistUrl, type YouTubeMeta, type YouTubePageType, type YouTubePlaylistUrl, type YouTubeShareUrl, type YouTubeSubscriptionsUrl, type YouTubeUrl, type YouTubeUsersPlaylistUrl, type YouTubeVideoUrl, type YouTubeVideosInPlaylist, ZARA_DNS$2 as ZARA_DNS, ZIP_TO_STATE$1 as ZIP_TO_STATE, type ZaraUrl, type Zero, type ZeroToMany, type ZeroToOne, type ZeroToZero, type Zip5, type ZipCode, type ZipPlus4, type ZipToState, addFnToProps, addPropsToFn, and, asApi, asArray, asChars, asDate, asEscapeFunction, asIsoDate, asOptionalParamFunction, asPhoneFormat, asRecord, asString, asStringLiteral, asType, asTypeToken, asVueRef, box, boxDictionaryValues, capitalize, choices, createConstant, createConverter, createCssKeyframe, createCssSelector, createErrorCondition, createFifoQueue, createFnWithProps, createFnWithPropsExplicit, createLifoQueue, createTypeToken, cssColor, csv, defineCss, defineObj, defineObject, defineTuple, endsWith, ensureLeading, ensureSurround, ensureTrailing, entries, errCondition, filter, find, fnMeta, get, getDaysBetween, getEach, getPhoneCountryCode, getTailwindModifiers, getToday, getTomorrow, getUrlPath, getUrlPort, getUrlProtocol, getUrlQueryParams, getUrlSource, getWeekNumber, getYesterday, getYouTubePageType, handleDoneFn, hasDefaultValue, hasIndexOf, hasKeys, hasUrlPort, hasUrlQueryParameter, hasWhiteSpace, idLiteral, idTypeGuard, identity, ifArray, ifArrayPartial, ifBoolean, ifChar, ifContainer, ifDefined, ifFalse, ifFunction, ifHasKey, ifLength, ifLowercaseChar, ifNotNull, ifNull, ifNumber, ifObject, ifSameType, ifScalar, ifString, ifTrue, ifUndefined, ifUppercaseChar, indexOf, intersect, intersection, ip6GroupExpansion, ip6Prefix, isAccelerationMetric, isAccelerationUom, isAlpha, isAmazonUrl, isApi, isApiSurface, isAppleUrl, isAreaMetric, isAreaUom, isArray, isArrayToken, isAtomicToken, isAustralianNewsUrl, isBelgiumNewsUrl, isBestBuyUrl, isBitbucketUrl, isBoolean, isBooleanLike, isBox, isCanadianNewsUrl, isChineseNewsUrl, isCodeCommitUrl, isConstant, isContainer, isContainerToken, isCostCoUrl, isCountryAbbrev, isCountryCode2, isCountryCode3, isCountryName, isCssAspectRatio, isCurrentMetric, isCurrentUom, isCvsUrl, isDanishNewsUrl, isDate, isDefineObject, isDefined, isDellUrl, isDistanceMetric, isDistanceUom, isDomainName, isDoneFn, isDutchNewsUrl, isEbayUrl, isEmail, isEnergyMetric, isEnergyUom, isEqual, isErrorCondition, isEscapeFunction, isEtsyUrl, isFalse, isFalsy, isFnToken, isFnWithParams, isFrenchNewsUrl, isFrequencyMetric, isFrequencyUom, isFunction, isGeneratorToken, isGermanNewsUrl, isGithubIssueUrl, isGithubIssuesListUrl, isGithubOrgUrl, isGithubProjectUrl, isGithubProjectsListUrl, isGithubReleaseTagUrl, isGithubReleasesListUrl, isGithubRepoReleaseTagUrl, isGithubRepoReleasesUrl, isGithubRepoUrl, isGithubUrl, isHexadecimal, isHmUrl, isHomeDepotUrl, isHtmlElement, isIkeaUrl, isIndexable, isIndianNewsUrl, isInlineSvg, isIp4Address, isIp6Address, isIpAddress, isIso3166Alpha2, isIso3166Alpha3, isIso3166CountryCode, isIso3166CountryName, isIsoDate, isIsoDateTime, isIsoExplicitDate, isIsoExplicitTime, isIsoImplicitDate, isIsoImplicitTime, isIsoTime, isIsoYear, isItalianNewsUrl, isJapaneseNewsUrl, isKrogersUrl, isLeapYear, isLength, isLikeRegExp, isLowesUrl, isLuminosityMetric, isLuminosityUom, isLuxonDateTime, isMacysUrl, isMapToken, isMassMetric, isMassUom, isMetric, isMexicanNewsUrl, isMoment, isNever, isNewsUrl, isNikeUrl, isNorwegianNewsUrl, isNotNull, isNothing, isNull, isNumber, isNumberLike, isNumericArray, isNumericString, isObject, isObjectToken, isOptionalParamFunction, isPhoneNumber, isPowerMetric, isPowerUom, isPressureMetric, isPressureUom, isReadonlyArray, isRecordToken, isRef, isRegExp, isRepoSource, isRepoUrl, isResistance, isResistanceUom, isRetailUrl, isSameTypeOf, isScalar, isSemanticVersion, isSet, isSetToken, isShape, isShapeCallback, isSimpleContainerToken, isSimpleContainerTokenTuple, isSimpleScalarToken, isSimpleScalarTokenTuple, isSimpleToken, isSimpleTokenTuple, isSingletonToken, isSocialMediaProfileUrl, isSocialMediaUrl, isSouthKoreanNewsUrl, isSpanishNewsUrl, isSpecificConstant, isSpeedMetric, isSpeedUom, isString, isStringArray, isSwissNewsUrl, isSymbol, isTailwindColor, isTailwindColorClass, isTailwindColorName, isTailwindColorTarget, isTailwindColorWithLuminosity, isTailwindColorWithLuminosityAndOpacity, isTailwindModifier, isTargetUrl, isTemperatureMetric, isTemperatureUom, isThenable, isThisMonth, isThisWeek, isThisYear, isTimeMetric, isTimeUom, isToday, isTomorrow, isTrimable, isTrue, isTruthy, isTuple, isTupleToken, isTurkishNewsUrl, isTypeOf, isTypeToken, isTypeTuple, isUkNewsUrl, isUndefined, isUnionSetToken, isUnionToken, isUnset, isUom, isUri, isUrl, isUrlPath, isUrlSource, isUsNewsUrl, isUsStateAbbreviation, isUsStateName, isVoltageMetric, isVoltageUom, isVolumeMetric, isVolumeUom, isWalgreensUrl, isWalmartUrl, isWayfairUrl, isWeakMapToken, isWholeFoodsUrl, isYesterday, isYouTubeCreatorUrl, isYouTubeFeedHistoryUrl, isYouTubeFeedUrl, isYouTubePlaylistUrl, isYouTubePlaylistsUrl, isYouTubeShareUrl, isYouTubeSubscriptionsUrl, isYouTubeTrendingUrl, isYouTubeUrl, isYouTubeVideoUrl, isYouTubeVideosInPlaylist, isZaraUrl, isZipCode, isZipCode5, isZipPlus4, joinWith, jsonValue, jsonValues, keysOf, kindLiteral, last, list, literal, logicalReturns, lookupCountryAlpha2, lookupCountryAlpha3, lookupCountryCode, lookupCountryName, lowercase, mergeObjects, mergeScalars, mergeTuples, nameLiteral, narrow, never, omit, optional, optionalOrNull, or, orNull, pathJoin, pluralize, removePhoneCountryCode, removeTailwindModifiers, removeUrlProtocol, result, retain, retainAfter, retainAfterInclusive, retainChars, retainUntil, retainUntilInclusive, retainWhile, reverse, rightWhitespace, shape, sharedKeys, shift, simpleContainerToken, simpleContainerTokenToTypeToken, simpleContainerType, simpleScalarToken, simpleScalarTokenToTypeToken, simpleScalarType, simpleToken, simpleType, simpleUnionTokenToTypeToken, slice, split, startsWith, stripAfter, stripBefore, stripChars, stripLeading, stripParenthesis, stripSurround, stripTrailing, stripUntil, stripWhile, surround, takeNumericCharacters, takeProp, toCamelCase, toKebabCase, toNumber, toNumericArray, toPascalCase, toSnakeCase, toString, toUppercase, trim, trimEnd, trimLeft, trimRight, trimStart, truncate, tuple, twColor, unbox, uncapitalize, union, unionize, unique, uniqueKeys, uppercase, urlMeta, valuesOf, widen, withDefaults, withKeys, withoutKeys, withoutValue, wrapFn, youtubeEmbed, youtubeMeta };
@@ -4471,7 +4471,7 @@ function isLeapYear(val) {
4471
4471
  }
4472
4472
  return year % 100 === 0 ? year % 400 === 0 : year % 4 === 0;
4473
4473
  }
4474
- function defineObject(defn) {
4474
+ function defineObject(defn, ..._optProps) {
4475
4475
  return defn;
4476
4476
  }
4477
4477
  function entries(obj) {