inferred-types 0.55.9 → 0.55.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.
@@ -7262,7 +7262,7 @@ type Container$1 = Dictionary$1 | readonly unknown[] | Map<unknown, unknown> | W
7262
7262
  *
7263
7263
  * values/types considered to be "empty"
7264
7264
  */
7265
- type Empty$1 = undefined | null | EmptyObject$1 | [] | "";
7265
+ type Empty$1 = undefined | null | ExplicitlyEmptyObject$1 | [] | "";
7266
7266
 
7267
7267
  /**
7268
7268
  * **FalsyValue**
@@ -8237,6 +8237,12 @@ type Test$2<X, Y, TRUE = true, FALSE = false> = (<T>() => T extends X ? 1 : 2) e
8237
8237
  * Type utility which tests whether two types -- `X` and `Y` -- are exactly the same type
8238
8238
  */
8239
8239
  type IsEqual$1<X, Y, TRUE = true, FALSE = false> = IsAny$1<X> extends true ? IsAny$1<Y> extends true ? true : false : Test$2<X, Y, TRUE, FALSE>;
8240
+ /**
8241
+ * **Equals**`<X,Y>`
8242
+ *
8243
+ * Type utility which tests whether two types -- `X` and `Y` -- are exactly the same type
8244
+ */
8245
+ type Equals$1<X, Y, TTrue = true, TFalse = false> = IsEqual$1<X, Y, TTrue, TFalse>;
8240
8246
 
8241
8247
  /**
8242
8248
  * **IsEmptyString**`<T>`
@@ -9957,7 +9963,7 @@ type TwTarget__Color__Light$1 = `${TwColorTarget$1}-${TwTarget__ColorName$1}-${n
9957
9963
  type CssNamedColors$1 = typeof CSS_NAMED_COLORS$1[number];
9958
9964
  type CssColorSpace$1 = "srgb" | "srgb-linear" | "display-p3" | "rec2020" | "a98-rgb" | "prophoto-rgb" | "xyz" | "xyz-d50" | "xyz-d65" | "hsl" | "hwb" | "lch" | "oklch";
9959
9965
  type CssRgb$1 = `rgb(${number} ${number} ${number})` | `rgb(${number},${OptionalSpace$1}${number},${OptionalSpace$1}${number})`;
9960
- type CssRgba$1 = `rgba(${number} ${number} ${number})` | `rgba(${number},${OptionalSpace$1}${number},${OptionalSpace$1}${number})`;
9966
+ type CssRgba$1 = `rgba(${number} ${number} ${number} ${number})` | `rgba(${number},${OptionalSpace$1}${number},${OptionalSpace$1}${number},${OptionalSpace$1}${number})`;
9961
9967
  /**
9962
9968
  * Hue, Saturation, and Lightness level (**HSL** color model)
9963
9969
  */
@@ -10013,12 +10019,12 @@ interface CssTextProperties$1 {
10013
10019
  "text-align"?: CssTextAlign$1;
10014
10020
  "text-align-last"?: CssTextAlign$1;
10015
10021
  "text-decoration-line"?: CssTextDecorationLine$1 | `${CssTextDecorationLine$1} ${CssTextDecorationLine$1}${string}` | CssGlobal$1;
10016
- "text-decoration-color"?: CssColorLight$1 | CssGlobal$1;
10022
+ "text-decoration-color"?: Suggest$1<CssColorLight$1 | CssGlobal$1>;
10017
10023
  "text-decoration-thickness"?: "auto" | "from-font" | CssSizingLight$1 | CssGlobal$1;
10018
10024
  "text-decoration-style"?: CssTextDecorationStyle$1;
10019
- "text-indent"?: CssTextIndent$1;
10025
+ "text-indent"?: Suggest$1<CssTextIndent$1>;
10020
10026
  "text-emphasis"?: string;
10021
- "text-justify"?: CssTextJustify$1;
10027
+ "text-justify"?: Suggest$1<CssTextJustify$1>;
10022
10028
  "text-orientation"?: CssTextOrientation$1;
10023
10029
  "text-shadow"?: `${CssSizingLight$1}${string}${CssColorLight$1}` | CssGlobal$1;
10024
10030
  "text-transform"?: CssTextTransform$1;
@@ -10055,7 +10061,7 @@ type CssGap$1 = CssSizing$1 | `${CssSizing$1} ${CssSizing$1}` | CssGlobal$1;
10055
10061
  *
10056
10062
  * a union of valid values for the **CSS** `flex-grow` property.
10057
10063
  */
10058
- type CssFlexGrow$1 = number | CssGlobal$1;
10064
+ type CssFlexGrow$1 = Suggest$1<"1" | "2" | "3" | CssGlobal$1>;
10059
10065
  /**
10060
10066
  * **CssFlexShrink**
10061
10067
  *
@@ -10187,7 +10193,7 @@ interface CssBackgroundProperties$1 {
10187
10193
  "background-attachement"?: string;
10188
10194
  "background-blend-mode"?: string;
10189
10195
  "background-clip"?: string;
10190
- "background-color"?: CssColor$1;
10196
+ "background-color"?: Suggest$1<CssColor$1>;
10191
10197
  "background-image"?: string;
10192
10198
  "background-origin"?: string;
10193
10199
  "background-position"?: string;
@@ -10659,44 +10665,44 @@ interface CssTransformProperties$1 {
10659
10665
  */
10660
10666
  type CssDefinition$1 = {
10661
10667
  /** [MDN Reference](https://developer.mozilla.org/en-US/docs/Web/CSS/appearance) */
10662
- "appearance"?: CssAppearance$1;
10668
+ "appearance"?: Suggest$1<CssAppearance$1>;
10663
10669
  /** [MDN Reference](https://developer.mozilla.org/en-US/docs/Web/CSS/backdrop-filter) */
10664
- "backdrop-filter"?: CssBackdropFilter$1;
10670
+ "backdrop-filter"?: Suggest$1<CssBackdropFilter$1>;
10665
10671
  /**
10666
10672
  * The valid values for the
10667
10673
  * [**display**](https://developer.mozilla.org/en-US/docs/Web/CSS/display)
10668
10674
  * property in CSS.
10669
10675
  */
10670
- "display"?: CssDisplay$1;
10676
+ "display"?: Suggest$1<CssDisplay$1>;
10671
10677
  /** [MDN Reference](https://developer.mozilla.org/en-US/docs/Web/CSS/position) */
10672
- "position"?: CssPosition$1;
10678
+ "position"?: Suggest$1<CssPosition$1>;
10673
10679
  /** [MDN Reference](https://developer.mozilla.org/en-US/docs/Web/CSS/aspect-ratio) */
10674
- "aspect-ratio"?: CssAspectRatio$1;
10680
+ "aspect-ratio"?: Suggest$1<CssAspectRatio$1>;
10675
10681
  /** [MDN Reference](https://developer.mozilla.org/en-US/docs/Web/CSS/opacity) */
10676
- "opacity"?: CssOpacity$1;
10682
+ "opacity"?: Suggest$1<CssOpacity$1>;
10677
10683
  /** [MDN Reference](https://developer.mozilla.org/en-US/docs/Web/CSS/gap) */
10678
- "gap"?: CssGap$1;
10684
+ "gap"?: Suggest$1<CssGap$1>;
10679
10685
  /** [MDN Reference](https://developer.mozilla.org/en-US/docs/Web/CSS/flex) */
10680
- "flex"?: CssFlex$1;
10686
+ "flex"?: Suggest$1<CssFlex$1>;
10681
10687
  /** [MDN Reference](https://developer.mozilla.org/en-US/docs/Web/CSS/flex-grow) */
10682
- "flex-grow"?: CssFlexGrow$1;
10688
+ "flex-grow"?: Suggest$1<CssFlexGrow$1>;
10683
10689
  /** [MDN Reference](https://developer.mozilla.org/en-US/docs/Web/CSS/flex-shrink) */
10684
- "flex-shrink"?: CssFlexShrink$1;
10690
+ "flex-shrink"?: Suggest$1<CssFlexShrink$1>;
10685
10691
  /** [MDN Reference](https://developer.mozilla.org/en-US/docs/Web/CSS/flex-direction) */
10686
- "flex-direction"?: CssFlexDirection$1;
10692
+ "flex-direction"?: Suggest$1<CssFlexDirection$1>;
10687
10693
  /** [MDN Reference](https://developer.mozilla.org/en-US/docs/Web/CSS/flex-flow) */
10688
- "flex-flow"?: CssFlexFlow$1;
10694
+ "flex-flow"?: Suggest$1<CssFlexFlow$1>;
10689
10695
  /** [MDN Reference](https://developer.mozilla.org/en-US/docs/Web/CSS/flex-basis) */
10690
- "flex-basis"?: CssFlexBasis$1;
10696
+ "flex-basis"?: Suggest$1<CssFlexBasis$1>;
10691
10697
  /** [MDN Reference](https://developer.mozilla.org/en-US/docs/Web/CSS/float) */
10692
- "float"?: CssFloat$1;
10698
+ "float"?: Suggest$1<CssFloat$1>;
10693
10699
  /**
10694
10700
  * a union of valid values for the **CSS** [`list-style`](https://developer.mozilla.org/en-US/docs/Web/CSS/list-style) property.
10695
10701
  *
10696
10702
  * The list-style CSS shorthand property allows you to set all the list style properties
10697
10703
  * at once.
10698
10704
  */
10699
- "list-style"?: CssListStyle$1;
10705
+ "list-style"?: Suggest$1<CssListStyle$1>;
10700
10706
  /**
10701
10707
  * The block-size CSS property defines the horizontal or vertical size of an element's block,
10702
10708
  * depending on its writing mode. It corresponds to either the width or the height property,
@@ -10708,26 +10714,26 @@ type CssDefinition$1 = {
10708
10714
  *
10709
10715
  /** [MDN Reference](https://developer.mozilla.org/en-US/docs/Web/CSS/block-size)
10710
10716
  */
10711
- "block-size"?: CssSizing$1;
10717
+ "block-size"?: Suggest$1<CssSizing$1>;
10712
10718
  /** [MDN Reference](https://developer.mozilla.org/en-US/docs/Web/CSS/border-size) */
10713
- "border-size"?: CssSizing$1;
10719
+ "border-size"?: Suggest$1<CssSizing$1>;
10714
10720
  /** [MDN Reference](https://developer.mozilla.org/en-US/docs/Web/CSS/content) */
10715
- "content"?: CssContent$1;
10721
+ "content"?: Suggest$1<CssContent$1>;
10716
10722
  /** [MDN Reference](https://developer.mozilla.org/en-US/docs/Web/CSS/color) */
10717
- "color"?: CssColor$1;
10723
+ "color"?: Suggest$1<CssColor$1>;
10718
10724
  /** [MDN Reference](https://developer.mozilla.org/en-US/docs/Web/CSS/cursor) */
10719
- "cursor"?: CssCursor$1 | CssGlobal$1;
10725
+ "cursor"?: Suggest$1<CssCursor$1 | CssGlobal$1>;
10720
10726
  /** [MDN Reference](https://developer.mozilla.org/en-US/docs/Web/CSS/height) */
10721
- "height"?: CssSizing$1;
10727
+ "height"?: Suggest$1<CssSizing$1>;
10722
10728
  /** [MDN Reference](https://developer.mozilla.org/en-US/docs/Web/CSS/width) */
10723
- "width"?: CssSizing$1;
10729
+ "width"?: Suggest$1<CssSizing$1>;
10724
10730
  /** [MDN Reference](https://developer.mozilla.org/en-US/docs/Web/CSS/perspective) */
10725
- "perspective"?: CssSizingLight$1 | "none" | CssGlobal$1;
10726
- "perspective-origin"?: CssPerspectiveOrigin$1;
10731
+ "perspective"?: Suggest$1<CssSizingLight$1 | "none" | CssGlobal$1>;
10732
+ "perspective-origin"?: Suggest$1<CssPerspectiveOrigin$1>;
10727
10733
  /** [MDN Reference](https://developer.mozilla.org/en-US/docs/Web/CSS/mix-blend-mode) */
10728
- "mix-blend-mode"?: CssMixBlendMode$1;
10734
+ "mix-blend-mode"?: Suggest$1<CssMixBlendMode$1>;
10729
10735
  /** [MDN Reference](https://developer.mozilla.org/en-US/docs/Web/CSS/letter-spacing) */
10730
- "letter-spacing"?: CssLetterSpacing$1;
10736
+ "letter-spacing"?: Suggest$1<CssLetterSpacing$1>;
10731
10737
  /**
10732
10738
  * The lighting-color CSS property defines the color of the light source for the
10733
10739
  * <feDiffuseLighting> and <feSpecularLighting> SVG lighting filter primitives within an
@@ -10735,76 +10741,147 @@ type CssDefinition$1 = {
10735
10741
  *
10736
10742
  * - [MDN Reference](https://developer.mozilla.org/en-US/docs/Web/CSS/lighting-color)
10737
10743
  */
10738
- "lighting-color"?: CssColor$1;
10744
+ "lighting-color"?: Suggest$1<CssColor$1>;
10739
10745
  /** [MDN Reference](https://developer.mozilla.org/en-US/docs/Web/CSS/object-fit) */
10740
- "object-fit"?: CssObjectFit$1;
10746
+ "object-fit"?: Suggest$1<CssObjectFit$1>;
10741
10747
  /** [MDN Reference](https://developer.mozilla.org/en-US/docs/Web/CSS/object-position) */
10742
- "object-position"?: CssObjectPosition$1;
10743
- "order"?: `${number}` | CssGlobal$1;
10748
+ "object-position"?: Suggest$1<CssObjectPosition$1>;
10749
+ "order"?: Suggest$1<`${number}` | CssGlobal$1>;
10744
10750
  /** [MDN Reference](https://developer.mozilla.org/en-US/docs/Web/CSS/image-orientation) */
10745
- "image-orientation"?: CssImageOrientation$1;
10751
+ "image-orientation"?: Suggest$1<CssImageOrientation$1>;
10746
10752
  /** [MDN Reference](https://developer.mozilla.org/en-US/docs/Web/CSS/image-rendering) */
10747
- "image-rendering"?: CssImageRendering$1;
10753
+ "image-rendering"?: Suggest$1<CssImageRendering$1>;
10748
10754
  /** [MDN Reference](https://developer.mozilla.org/en-US/docs/Web/CSS/image-resolution) */
10749
- "image-resolution"?: CssImageResolution$1;
10755
+ "image-resolution"?: Suggest$1<CssImageResolution$1>;
10750
10756
  /** [MDN Reference](https://developer.mozilla.org/en-US/docs/Web/CSS/hanging-punction) */
10751
- "hanging-punctuation"?: CssHangingPunctuation$1;
10757
+ "hanging-punctuation"?: Suggest$1<CssHangingPunctuation$1>;
10752
10758
  /** [MDN Reference](https://developer.mozilla.org/en-US/docs/Web/CSS/min-height) */
10753
- "min-height"?: CssSizing$1;
10759
+ "min-height"?: Suggest$1<CssSizing$1>;
10754
10760
  /** [MDN Reference](https://developer.mozilla.org/en-US/docs/Web/CSS/min-width) */
10755
- "min-width"?: CssSizing$1;
10761
+ "min-width"?: Suggest$1<CssSizing$1>;
10756
10762
  /** [MDN Reference](https://developer.mozilla.org/en-US/docs/Web/CSS/min-block-size) */
10757
- "min-block-size"?: CssSizing$1;
10763
+ "min-block-size"?: Suggest$1<CssSizing$1>;
10758
10764
  /** [MDN Reference](https://developer.mozilla.org/en-US/docs/Web/CSS/min-inline-size) */
10759
- "min-inline-size"?: CssSizing$1;
10765
+ "min-inline-size"?: Suggest$1<CssSizing$1>;
10760
10766
  /** [MDN Reference](https://developer.mozilla.org/en-US/docs/Web/CSS/stop-color) */
10761
- "stop-color"?: CssColorLight$1 | CssGlobal$1;
10767
+ "stop-color"?: Suggest$1<CssColorLight$1 | CssGlobal$1>;
10762
10768
  /** [MDN Reference](https://developer.mozilla.org/en-US/docs/Web/CSS/stop-opacity) */
10763
- "stop-opacity"?: `${number}` | `${number}%` | CssGlobal$1;
10769
+ "stop-opacity"?: Suggest$1<`${number}` | `${number}%` | CssGlobal$1>;
10764
10770
  /** [MDN Reference](https://developer.mozilla.org/en-US/docs/Web/CSS/tab-size) */
10765
- "tab-size"?: `${number}` | CssSizingLight$1 | CssGlobal$1;
10771
+ "tab-size"?: Suggest$1<`${number}` | CssSizingLight$1 | CssGlobal$1>;
10766
10772
  /** [MDN Reference](https://developer.mozilla.org/en-US/docs/Web/CSS/table-layout) */
10767
- "table-layout"?: "auto" | "fixed" | CssGlobal$1;
10773
+ "table-layout"?: Suggest$1<"auto" | "fixed" | CssGlobal$1>;
10768
10774
  /** [MDN Reference](https://developer.mozilla.org/en-US/docs/Web/CSS/translate) */
10769
- "translate"?: CssTranslate$1 | CssGlobal$1;
10775
+ "translate"?: Suggest$1<CssTranslate$1 | CssGlobal$1>;
10770
10776
  /** [MDN Reference](https://developer.mozilla.org/en-US/docs/Web/CSS/quotes) */
10771
- "quotes"?: string;
10777
+ "quotes"?: Suggest$1<string>;
10772
10778
  /** [MDN Reference](https://developer.mozilla.org/en-US/docs/Web/CSS/r) */
10773
- "r"?: CssSizingLight$1 | CssGlobal$1;
10779
+ "r"?: Suggest$1<CssSizingLight$1 | CssGlobal$1>;
10774
10780
  /** [MDN Reference](https://developer.mozilla.org/en-US/docs/Web/CSS/pointer-events) */
10775
- "pointer-events"?: PointerEvent | CssGlobal$1;
10781
+ "pointer-events"?: string;
10776
10782
  /** [MDN Reference](https://developer.mozilla.org/en-US/docs/Web/CSS/resize) */
10777
- "resize"?: "both" | "horizontal" | "vertical" | "none" | CssGlobal$1;
10783
+ "resize"?: Suggest$1<"both" | "horizontal" | "vertical" | "none" | CssGlobal$1>;
10778
10784
  /** [MDN Reference](https://developer.mozilla.org/en-US/docs/Web/CSS/rotate) */
10779
- "rotate"?: CssRotation$1 | `x ${CssRotation$1}` | `y ${CssRotation$1}` | `z ${CssRotation$1}` | CssGlobal$1;
10780
- "row-gap"?: CssSizing$1;
10785
+ "rotate"?: Suggest$1<CssRotation$1 | `x ${CssRotation$1}` | `y ${CssRotation$1}` | `z ${CssRotation$1}` | CssGlobal$1>;
10786
+ "row-gap"?: Suggest$1<CssSizing$1>;
10781
10787
  /** [MDN Reference](https://developer.mozilla.org/en-US/docs/Web/CSS/rx) */
10782
- "rx"?: CssSizing$1;
10788
+ "rx"?: Suggest$1<CssSizing$1>;
10783
10789
  /** [MDN Reference](https://developer.mozilla.org/en-US/docs/Web/CSS/ry) */
10784
- "ry"?: CssSizing$1;
10790
+ "ry"?: Suggest$1<CssSizing$1>;
10785
10791
  /** [MDN Reference](https://developer.mozilla.org/en-US/docs/Web/CSS/x) */
10786
- "x"?: CssSizing$1;
10792
+ "x"?: Suggest$1<CssSizing$1>;
10787
10793
  /** [MDN Reference](https://developer.mozilla.org/en-US/docs/Web/CSS/y) */
10788
- "y"?: CssSizing$1;
10794
+ "y"?: Suggest$1<CssSizing$1>;
10789
10795
  /** [MDN Reference](https://developer.mozilla.org/en-US/docs/Web/CSS/white-space) */
10790
- "white-space"?: CssWhiteSpace$1;
10796
+ "white-space"?: Suggest$1<CssWhiteSpace$1>;
10791
10797
  /** [MDN Reference](https://developer.mozilla.org/en-US/docs/Web/CSS/white-space-collapse) */
10792
- "white-space-collapse"?: CssWhiteSpaceCollapse$1;
10798
+ "white-space-collapse"?: Suggest$1<CssWhiteSpaceCollapse$1>;
10793
10799
  /** [MDN Reference](https://developer.mozilla.org/en-US/docs/Web/CSS/widows) */
10794
- "widows"?: string;
10800
+ "widows"?: Suggest$1<string>;
10795
10801
  /** [MDN Reference](https://developer.mozilla.org/en-US/docs/Web/CSS/will-change) */
10796
- "will-change"?: string;
10802
+ "will-change"?: Suggest$1<string>;
10797
10803
  /** [MDN Reference](https://developer.mozilla.org/en-US/docs/Web/CSS/word-break) */
10798
- "word-break"?: CssWordBreak$1;
10804
+ "word-break"?: Suggest$1<CssWordBreak$1>;
10799
10805
  /** [MDN Reference](https://developer.mozilla.org/en-US/docs/Web/CSS/word-spacing) */
10800
- "word-spacing"?: "normal" | CssSizing$1;
10806
+ "word-spacing"?: Suggest$1<"normal" | CssSizing$1>;
10801
10807
  /** [MDN Reference](https://developer.mozilla.org/en-US/docs/Web/CSS/writing-mode) */
10802
- "writing-mode"?: CssWritingMode$1;
10808
+ "writing-mode"?: Suggest$1<CssWritingMode$1>;
10803
10809
  /** [MDN Reference](https://developer.mozilla.org/en-US/docs/Web/CSS/z-index) */
10804
- "z-index"?: `${number}` | "auto" | CssGlobal$1;
10810
+ "z-index"?: Suggest$1<`${number}` | "auto" | CssGlobal$1>;
10805
10811
  /** [MDN Reference](https://developer.mozilla.org/en-US/docs/Web/CSS/zoom) */
10806
- "zoom"?: `${number}` | `${number}%` | "normal" | "reset" | CssGlobal$1;
10807
- } & CssBorderProperties$1 & CssBackgroundProperties$1 & CssAbsolutionPositioningProperties$1 & CssOffsetProperties$1 & CssBreakProperties$1 & CssBoxProperties$1 & CssTextProperties$1 & CssStrokeProperties$1 & CssJustifyProperties$1 & CssAlignProperties$1 & CssPlaceProperties$1 & CssAnimationProperties$1 & CssMarginProperties$1 & CssPaddingProperties$1 & CssOutlineProperties$1 & CssOverflowProperties$1 & CssOffsetProperties$1 & CssTransformProperties$1;
10812
+ "zoom"?: Suggest$1<`${number}` | `${number}%` | "normal" | "reset" | CssGlobal$1>;
10813
+ } & CssBorderProperties$1 & CssBackgroundProperties$1 & CssAbsolutionPositioningProperties$1 & CssOffsetProperties$1 & CssBreakProperties$1 & CssBoxProperties$1 & CssTextProperties$1 & CssStrokeProperties$1 & CssJustifyProperties$1 & CssAlignProperties$1 & CssPlaceProperties$1 & CssAnimationProperties$1 & CssMarginProperties$1 & CssPaddingProperties$1 & CssOutlineProperties$1 & CssOverflowProperties$1 & CssOffsetProperties$1 & CssTransformProperties$1 & CssFontProperties$1;
10814
+
10815
+ type CssFontFamily$1 = `"${string}"` | "serif" | "san-serif" | "monospace" | "cursive" | "fantasy" | "system-ui" | "ui-serif" | "ui-sans-serif" | "ui-monospace" | "ui-rounded" | "emoji" | "math" | "fansong";
10816
+ type CssFontFeatureSetting$1 = "normal" | "liga" | "tnum" | "smcp";
10817
+ type CssFontKerning$1 = "auto" | "normal" | "none" | CssGlobal$1;
10818
+ type CssFontPalette$1 = "normal" | "light" | "dark" | `--${string}` | `palette-mix(in ${ColorGamut},${string})`;
10819
+ type CssFontWidth$1 = "normal" | "ultra-condensed" | "extra-condensed" | "condensed" | "semi-condensed" | "expanded" | "extra-expanded" | "ultra-expanded" | `${number}%` | CssGlobal$1;
10820
+ type CssFontStyle$1 = "normal" | "italic" | "oblique" | `oblique ${CssRotation$1}` | CssGlobal$1;
10821
+ type CssFontSynthesis$1 = "none" | "weight" | "style" | "position" | "small-caps";
10822
+ type CssFontWeight$1 = "normal" | "bold" | "100" | "200" | "300" | "400" | "500" | "600" | "700" | "800" | "900" | "lighter" | "bolder" | CssGlobal$1;
10823
+ /**
10824
+ * The font-language-override CSS property controls the use of language-specific glyphs in a typeface.
10825
+ *
10826
+ * By default, HTML's lang attribute tells browsers to display glyphs designed specifically
10827
+ * for that language. For example, a lot of fonts have a special character for the digraph
10828
+ * fi that merge the dot on the "i" with the "f." However, if the language is set to Turkish
10829
+ * the typeface will likely know not to use the merged glyph; Turkish has two versions of
10830
+ * the "i," one with a dot (i) and one without (ı), and using the ligature would incorrectly
10831
+ * transform a dotted "i" into a dotless "i."
10832
+ *
10833
+ * The font-language-override property lets you override the typeface behavior for a specific
10834
+ * language. This is useful, for example, when the typeface you're using lacks proper support
10835
+ * for the language. For instance, if a typeface doesn't have proper rules for the Azeri
10836
+ * language, you can force the font to use Turkish glyphs, which follow similar rules.
10837
+ */
10838
+ type CssFontLanguageOverride$1 = string;
10839
+ interface CssFontProperties$1 {
10840
+ "font-family"?: CssFontFamily$1 | `${CssFontFamily$1}, ${CssFontFamily$1}${string}` | CssGlobal$1;
10841
+ "font-feature-settings"?: CssFontFeatureSetting$1 | `${CssFontFeatureSetting$1} ${number | "on" | "off"}` | `${CssFontFeatureSetting$1} ${number | "on" | "off"},${string}`;
10842
+ "font-kerning"?: CssFontKerning$1;
10843
+ "font-language-override"?: CssFontLanguageOverride$1;
10844
+ "font-size"?: CssSizing$1 | "xx-small" | "x-small" | "small" | "medium" | "large" | "x-large" | "xx-large" | "xxx-large";
10845
+ /**
10846
+ * The font-size-adjust CSS property provides a way to modify the size of lowercase
10847
+ * letters relative to the size of uppercase letters, which defines the overall
10848
+ * font-size. This property is useful for situations where font fallback can
10849
+ * occur.
10850
+ *
10851
+ * - [Reference](https://developer.mozilla.org/en-US/docs/Web/CSS/font-size-adjust)
10852
+ */
10853
+ "font-size-adjust"?: CssSizingLight$1 | "none" | `${number}` | `from-font${Opt$1$1<` ${CssSizingLight$1}`>}` | `cap-height${Opt$1$1<` ${CssSizingLight$1}`>}` | `ex-height${Opt$1$1<` ${CssSizingLight$1}`>}` | `ch-width${Opt$1$1<` ${CssSizingLight$1}`>}` | `ic-width${Opt$1$1<` ${CssSizingLight$1}`>}` | `ic-height${Opt$1$1<` ${CssSizingLight$1}`>}`;
10854
+ /**
10855
+ * The font-palette CSS property allows specifying one of the many palettes contained in a
10856
+ * color font that a user agent may use for the font. Users can also override the values in
10857
+ * a palette or create a new palette by using the @font-palette-values at-rule.
10858
+ *
10859
+ * - [Reference](https://developer.mozilla.org/en-US/docs/Web/CSS/font-palette)
10860
+ */
10861
+ "font-palette"?: CssFontPalette$1;
10862
+ /**
10863
+ * An alias for `font-width`
10864
+ */
10865
+ "font-stretch"?: CssFontWidth$1;
10866
+ /**
10867
+ * The font-stretch CSS property selects a normal, condensed, or expanded face from a font.
10868
+ *
10869
+ * - [Reference](https://developer.mozilla.org/en-US/docs/Web/CSS/font-width)
10870
+ */
10871
+ "font-width"?: CssFontWidth$1;
10872
+ /** [Reference](https://developer.mozilla.org/en-US/docs/Web/CSS/font-style) */
10873
+ "font-style"?: CssFontStyle$1;
10874
+ /**
10875
+ * The `font-synthesis` shorthand CSS property lets you specify whether or not the browser
10876
+ * may synthesize the bold, italic, small-caps, and/or subscript and superscript typefaces
10877
+ * when they are missing in the specified font-family.
10878
+ *
10879
+ * - [Reference](https://developer.mozilla.org/en-US/docs/Web/CSS/font-synthesis)
10880
+ */
10881
+ "font-synthesis"?: CssFontSynthesis$1 | `${CssFontSynthesis$1} ${CssFontSynthesis$1}` | `${CssFontSynthesis$1} ${CssFontSynthesis$1} ${CssFontSynthesis$1}${string}` | CssGlobal$1;
10882
+ /** [Reference](https://developer.mozilla.org/en-US/docs/Web/CSS/font-weight) */
10883
+ "font-weight"?: CssFontWeight$1;
10884
+ }
10808
10885
  type HtmlTableElement$1 = "col" | "colgroup" | "hgroup" | "table" | "tbody" | "td" | "tfoot" | "th" | "thead" | "time" | "tr";
10809
10886
  type HtmlSymantecElement$1 = "abbr" | "acronym" | "address" | "area" | "article" | "aside" | "blockquote" | "caption" | "cite" | "details" | "dfn" | "dialog" | "fieldset" | "figure" | "figcaption" | "header" | "footer" | "legend" | "nav" | "menu" | "search" | "summary" | "section";
10810
10887
  type HtmlInputElement$1 = "button" | "form" | "label" | "optgroup" | "option" | "select" | "input" | "textarea";
@@ -13156,6 +13233,23 @@ type UnionToTuple$2<U, Last = LastInUnion$2<U>> = [U] extends [never] ? [] : [..
13156
13233
  */
13157
13234
  type UnionArrayToTuple$1<T> = T extends any[] ? UnionToTuple$2<ElementOf$1<T>> : never;
13158
13235
 
13236
+ type RemoveEmptyObject$1<T extends readonly unknown[], R extends readonly unknown[] = []> = [] extends T ? RemoveNever$1<R>[number] : RemoveEmptyObject$1<AfterFirst$1<T>, [
13237
+ ...R,
13238
+ First$1<T> extends Dictionary$1 ? Equals$1<Keys$1<First$1<T>>["length"], number> extends true ? never : First$1<T> : First$1<T>
13239
+ ]>;
13240
+ /**
13241
+ * **UnionFilter**`<U, E>`
13242
+ *
13243
+ * A type utility which receives a union type `U` and then eliminates
13244
+ * all elements of the union which _extend_ `E`.
13245
+ *
13246
+ * **Note:** _this is very much like `Exclude<U,E>` utility but can handle
13247
+ * unions of containers as well as just scalar values._
13248
+ *
13249
+ * **Related:** `UnionRetain`
13250
+ */
13251
+ type UnionFilter$1<U, E> = [U] extends [never] ? never : IsUnion$1<U> extends true ? Some$1<UnionToTuple$1$1<E>, "extends", EmptyObject$1> extends true ? Exclude<RemoveEmptyObject$1<UnionToTuple$1$1<U>>, RemoveEmptyObject$1<UnionToTuple$1$1<E>>> : Exclude<U, E> : U;
13252
+
13159
13253
  /**
13160
13254
  * **UnionToIntersection**`<U>`
13161
13255
  *
@@ -14513,14 +14607,14 @@ type Process$r$1<TValues extends readonly (boolean | LogicFunction$1)[], _TParam
14513
14607
  */
14514
14608
  type LogicalReturns$1<TValues extends readonly (boolean | LogicFunction$1)[], _TParams extends readonly unknown[] = []> = Process$r$1<TValues, _TParams> extends readonly boolean[] ? Process$r$1<TValues, _TParams> : never;
14515
14609
 
14516
- type Reduce$2<T extends readonly ([string, number])[], TMax extends number = 0, TVal extends string = ""> = [] extends T ? TVal : Reduce$2<AfterFirst$1<T>, First$1<T> extends [string, infer Len extends number] ? If$1<IsGreaterThan$1<Len, TMax>, Len, TMax> : TMax, First$1<T> extends [infer Val extends string, infer Len extends number] ? If$1<IsGreaterThan$1<Len, TMax>, Val, TVal> : TVal>;
14610
+ type Reduce$1<T extends readonly ([string, number])[], TMax extends number = 0, TVal extends string = ""> = [] extends T ? TVal : Reduce$1<AfterFirst$1<T>, First$1<T> extends [string, infer Len extends number] ? If$1<IsGreaterThan$1<Len, TMax>, Len, TMax> : TMax, First$1<T> extends [infer Val extends string, infer Len extends number] ? If$1<IsGreaterThan$1<Len, TMax>, Val, TVal> : TVal>;
14517
14611
  /**
14518
14612
  * **MaxLength**`<T>`
14519
14613
  *
14520
14614
  * Utility which reduces a tuple of strings to only the
14521
14615
  * string which is longest.
14522
14616
  */
14523
- type MaxLength$1<T> = T extends readonly string[] ? Reduce$2<{
14617
+ type MaxLength$1<T> = T extends readonly string[] ? Reduce$1<{
14524
14618
  [K in keyof T]: T[K] extends string ? [T[K], StrLen$1<T[K]>] : never;
14525
14619
  }> : never;
14526
14620
 
@@ -16038,12 +16132,16 @@ declare function createCssKeyframe<TName extends string, TKeyframes extends CssK
16038
16132
  css: `@keyframes ${TName} ${FrameToCSS<HandleDoneFn$1<ReturnType<TKeyframes>>, {}>}`;
16039
16133
  };
16040
16134
 
16135
+ interface CssFromDefnOption {
16136
+ indent?: string;
16137
+ inline?: boolean;
16138
+ }
16041
16139
  /**
16042
- * **cssFromDefinition**`(defn, [indent], [inline])`
16140
+ * **cssFromDefinition**`(defn, [opt])`
16043
16141
  *
16044
16142
  * converts a `CssDefinition` into a CSS string
16045
16143
  */
16046
- declare function cssFromDefinition<T extends CssDefinition$1>(defn: T, indent?: string, inline?: boolean): string;
16144
+ declare function cssFromDefinition<T extends CssDefinition$1, O extends CssFromDefnOption>(defn: T, opt?: O): string;
16047
16145
  declare function defineCss<T extends CssDefinition$1>(defn: T): {
16048
16146
  defn: T;
16049
16147
  } & (<S extends string>(selector?: S) => string);
@@ -16573,6 +16671,16 @@ declare function createFixedLengthArray<T extends Narrowable$1, C extends number
16573
16671
 
16574
16672
  declare const filter = "NOT READY";
16575
16673
 
16674
+ type NotEmpty$1<T extends readonly unknown[], R extends readonly unknown[] = []> = [] extends T ? RemoveNever$1<R> : NotEmpty$1<AfterFirst$1<T>, [
16675
+ ...R,
16676
+ First$1<T> extends Empty$1 ? never : UnionFilter$1<First$1<T>, Empty$1>
16677
+ ]>;
16678
+ /**
16679
+ * Filters an array/tuple down to elements which are _not empty_ and
16680
+ * preserves as much of the type as possible.
16681
+ */
16682
+ declare function filterEmpty<T extends readonly N[], N extends Narrowable$1>(...val: T): NotEmpty$1<T>;
16683
+
16576
16684
  /**
16577
16685
  * **Finder**
16578
16686
  *
@@ -18468,6 +18576,18 @@ declare function isEmail(val: unknown): val is Email$1;
18468
18576
  * - empty object
18469
18577
  */
18470
18578
  declare function isEmpty<T>(val: T): val is T & Empty$1;
18579
+ type NotEmpty<T> = UnionFilter$1<T, Empty$1> extends T ? UnionFilter$1<T, Empty$1> : T;
18580
+ /**
18581
+ * **isNotEmpty**(val)
18582
+ *
18583
+ * type guard which validates that `val` is **not** an `Empty` value:
18584
+ *
18585
+ * - `null` or `undefined`
18586
+ * - empty string
18587
+ * - empty array
18588
+ * - empty object
18589
+ */
18590
+ declare function isNotEmpty<T>(val: T): val is NotEmpty<T>;
18471
18591
 
18472
18592
  /**
18473
18593
  * **isErrorCondition**(value)
@@ -23230,7 +23350,7 @@ type DigitalLiteral = [
23230
23350
  *
23231
23351
  * values/types considered to be "empty"
23232
23352
  */
23233
- type Empty = undefined | null | EmptyObject | [] | "";
23353
+ type Empty = undefined | null | ExplicitlyEmptyObject | [] | "";
23234
23354
 
23235
23355
  /**
23236
23356
  * **FalsyValue**
@@ -27488,7 +27608,7 @@ type CssColorModel = "rgb" | "hsl" | "hsb" | "lab" | "oklch";
27488
27608
  type CssColorSpace = "srgb" | "srgb-linear" | "display-p3" | "rec2020" | "a98-rgb" | "prophoto-rgb" | "xyz" | "xyz-d50" | "xyz-d65" | "hsl" | "hwb" | "lch" | "oklch";
27489
27609
  type CssColorSpacePrimary = "srgb" | "display-p3" | "rec2020" | "hsl" | "hwb" | "lch" | "oklch";
27490
27610
  type CssRgb = `rgb(${number} ${number} ${number})` | `rgb(${number},${OptionalSpace}${number},${OptionalSpace}${number})`;
27491
- type CssRgba = `rgba(${number} ${number} ${number})` | `rgba(${number},${OptionalSpace}${number},${OptionalSpace}${number})`;
27611
+ type CssRgba = `rgba(${number} ${number} ${number} ${number})` | `rgba(${number},${OptionalSpace}${number},${OptionalSpace}${number},${OptionalSpace}${number})`;
27492
27612
  /**
27493
27613
  * Hue, Saturation, and Lightness level (**HSL** color model)
27494
27614
  */
@@ -27557,12 +27677,12 @@ interface CssTextProperties {
27557
27677
  "text-align"?: CssTextAlign;
27558
27678
  "text-align-last"?: CssTextAlign;
27559
27679
  "text-decoration-line"?: CssTextDecorationLine | `${CssTextDecorationLine} ${CssTextDecorationLine}${string}` | CssGlobal;
27560
- "text-decoration-color"?: CssColorLight | CssGlobal;
27680
+ "text-decoration-color"?: Suggest<CssColorLight | CssGlobal>;
27561
27681
  "text-decoration-thickness"?: "auto" | "from-font" | CssSizingLight | CssGlobal;
27562
27682
  "text-decoration-style"?: CssTextDecorationStyle;
27563
- "text-indent"?: CssTextIndent;
27683
+ "text-indent"?: Suggest<CssTextIndent>;
27564
27684
  "text-emphasis"?: string;
27565
- "text-justify"?: CssTextJustify;
27685
+ "text-justify"?: Suggest<CssTextJustify>;
27566
27686
  "text-orientation"?: CssTextOrientation;
27567
27687
  "text-shadow"?: `${CssSizingLight}${string}${CssColorLight}` | CssGlobal;
27568
27688
  "text-transform"?: CssTextTransform;
@@ -27599,7 +27719,7 @@ type CssGap = CssSizing | `${CssSizing} ${CssSizing}` | CssGlobal;
27599
27719
  *
27600
27720
  * a union of valid values for the **CSS** `flex-grow` property.
27601
27721
  */
27602
- type CssFlexGrow = number | CssGlobal;
27722
+ type CssFlexGrow = Suggest<"1" | "2" | "3" | CssGlobal>;
27603
27723
  /**
27604
27724
  * **CssFlexShrink**
27605
27725
  *
@@ -27756,7 +27876,7 @@ interface CssBackgroundProperties {
27756
27876
  "background-attachement"?: string;
27757
27877
  "background-blend-mode"?: string;
27758
27878
  "background-clip"?: string;
27759
- "background-color"?: CssColor;
27879
+ "background-color"?: Suggest<CssColor>;
27760
27880
  "background-image"?: string;
27761
27881
  "background-origin"?: string;
27762
27882
  "background-position"?: string;
@@ -28241,44 +28361,44 @@ interface CssTransformProperties {
28241
28361
  */
28242
28362
  type CssDefinition = {
28243
28363
  /** [MDN Reference](https://developer.mozilla.org/en-US/docs/Web/CSS/appearance) */
28244
- "appearance"?: CssAppearance;
28364
+ "appearance"?: Suggest<CssAppearance>;
28245
28365
  /** [MDN Reference](https://developer.mozilla.org/en-US/docs/Web/CSS/backdrop-filter) */
28246
- "backdrop-filter"?: CssBackdropFilter;
28366
+ "backdrop-filter"?: Suggest<CssBackdropFilter>;
28247
28367
  /**
28248
28368
  * The valid values for the
28249
28369
  * [**display**](https://developer.mozilla.org/en-US/docs/Web/CSS/display)
28250
28370
  * property in CSS.
28251
28371
  */
28252
- "display"?: CssDisplay;
28372
+ "display"?: Suggest<CssDisplay>;
28253
28373
  /** [MDN Reference](https://developer.mozilla.org/en-US/docs/Web/CSS/position) */
28254
- "position"?: CssPosition;
28374
+ "position"?: Suggest<CssPosition>;
28255
28375
  /** [MDN Reference](https://developer.mozilla.org/en-US/docs/Web/CSS/aspect-ratio) */
28256
- "aspect-ratio"?: CssAspectRatio;
28376
+ "aspect-ratio"?: Suggest<CssAspectRatio>;
28257
28377
  /** [MDN Reference](https://developer.mozilla.org/en-US/docs/Web/CSS/opacity) */
28258
- "opacity"?: CssOpacity;
28378
+ "opacity"?: Suggest<CssOpacity>;
28259
28379
  /** [MDN Reference](https://developer.mozilla.org/en-US/docs/Web/CSS/gap) */
28260
- "gap"?: CssGap;
28380
+ "gap"?: Suggest<CssGap>;
28261
28381
  /** [MDN Reference](https://developer.mozilla.org/en-US/docs/Web/CSS/flex) */
28262
- "flex"?: CssFlex;
28382
+ "flex"?: Suggest<CssFlex>;
28263
28383
  /** [MDN Reference](https://developer.mozilla.org/en-US/docs/Web/CSS/flex-grow) */
28264
- "flex-grow"?: CssFlexGrow;
28384
+ "flex-grow"?: Suggest<CssFlexGrow>;
28265
28385
  /** [MDN Reference](https://developer.mozilla.org/en-US/docs/Web/CSS/flex-shrink) */
28266
- "flex-shrink"?: CssFlexShrink;
28386
+ "flex-shrink"?: Suggest<CssFlexShrink>;
28267
28387
  /** [MDN Reference](https://developer.mozilla.org/en-US/docs/Web/CSS/flex-direction) */
28268
- "flex-direction"?: CssFlexDirection;
28388
+ "flex-direction"?: Suggest<CssFlexDirection>;
28269
28389
  /** [MDN Reference](https://developer.mozilla.org/en-US/docs/Web/CSS/flex-flow) */
28270
- "flex-flow"?: CssFlexFlow;
28390
+ "flex-flow"?: Suggest<CssFlexFlow>;
28271
28391
  /** [MDN Reference](https://developer.mozilla.org/en-US/docs/Web/CSS/flex-basis) */
28272
- "flex-basis"?: CssFlexBasis;
28392
+ "flex-basis"?: Suggest<CssFlexBasis>;
28273
28393
  /** [MDN Reference](https://developer.mozilla.org/en-US/docs/Web/CSS/float) */
28274
- "float"?: CssFloat;
28394
+ "float"?: Suggest<CssFloat>;
28275
28395
  /**
28276
28396
  * a union of valid values for the **CSS** [`list-style`](https://developer.mozilla.org/en-US/docs/Web/CSS/list-style) property.
28277
28397
  *
28278
28398
  * The list-style CSS shorthand property allows you to set all the list style properties
28279
28399
  * at once.
28280
28400
  */
28281
- "list-style"?: CssListStyle;
28401
+ "list-style"?: Suggest<CssListStyle>;
28282
28402
  /**
28283
28403
  * The block-size CSS property defines the horizontal or vertical size of an element's block,
28284
28404
  * depending on its writing mode. It corresponds to either the width or the height property,
@@ -28290,26 +28410,26 @@ type CssDefinition = {
28290
28410
  *
28291
28411
  /** [MDN Reference](https://developer.mozilla.org/en-US/docs/Web/CSS/block-size)
28292
28412
  */
28293
- "block-size"?: CssSizing;
28413
+ "block-size"?: Suggest<CssSizing>;
28294
28414
  /** [MDN Reference](https://developer.mozilla.org/en-US/docs/Web/CSS/border-size) */
28295
- "border-size"?: CssSizing;
28415
+ "border-size"?: Suggest<CssSizing>;
28296
28416
  /** [MDN Reference](https://developer.mozilla.org/en-US/docs/Web/CSS/content) */
28297
- "content"?: CssContent;
28417
+ "content"?: Suggest<CssContent>;
28298
28418
  /** [MDN Reference](https://developer.mozilla.org/en-US/docs/Web/CSS/color) */
28299
- "color"?: CssColor;
28419
+ "color"?: Suggest<CssColor>;
28300
28420
  /** [MDN Reference](https://developer.mozilla.org/en-US/docs/Web/CSS/cursor) */
28301
- "cursor"?: CssCursor | CssGlobal;
28421
+ "cursor"?: Suggest<CssCursor | CssGlobal>;
28302
28422
  /** [MDN Reference](https://developer.mozilla.org/en-US/docs/Web/CSS/height) */
28303
- "height"?: CssSizing;
28423
+ "height"?: Suggest<CssSizing>;
28304
28424
  /** [MDN Reference](https://developer.mozilla.org/en-US/docs/Web/CSS/width) */
28305
- "width"?: CssSizing;
28425
+ "width"?: Suggest<CssSizing>;
28306
28426
  /** [MDN Reference](https://developer.mozilla.org/en-US/docs/Web/CSS/perspective) */
28307
- "perspective"?: CssSizingLight | "none" | CssGlobal;
28308
- "perspective-origin"?: CssPerspectiveOrigin;
28427
+ "perspective"?: Suggest<CssSizingLight | "none" | CssGlobal>;
28428
+ "perspective-origin"?: Suggest<CssPerspectiveOrigin>;
28309
28429
  /** [MDN Reference](https://developer.mozilla.org/en-US/docs/Web/CSS/mix-blend-mode) */
28310
- "mix-blend-mode"?: CssMixBlendMode;
28430
+ "mix-blend-mode"?: Suggest<CssMixBlendMode>;
28311
28431
  /** [MDN Reference](https://developer.mozilla.org/en-US/docs/Web/CSS/letter-spacing) */
28312
- "letter-spacing"?: CssLetterSpacing;
28432
+ "letter-spacing"?: Suggest<CssLetterSpacing>;
28313
28433
  /**
28314
28434
  * The lighting-color CSS property defines the color of the light source for the
28315
28435
  * <feDiffuseLighting> and <feSpecularLighting> SVG lighting filter primitives within an
@@ -28317,76 +28437,76 @@ type CssDefinition = {
28317
28437
  *
28318
28438
  * - [MDN Reference](https://developer.mozilla.org/en-US/docs/Web/CSS/lighting-color)
28319
28439
  */
28320
- "lighting-color"?: CssColor;
28440
+ "lighting-color"?: Suggest<CssColor>;
28321
28441
  /** [MDN Reference](https://developer.mozilla.org/en-US/docs/Web/CSS/object-fit) */
28322
- "object-fit"?: CssObjectFit;
28442
+ "object-fit"?: Suggest<CssObjectFit>;
28323
28443
  /** [MDN Reference](https://developer.mozilla.org/en-US/docs/Web/CSS/object-position) */
28324
- "object-position"?: CssObjectPosition;
28325
- "order"?: `${number}` | CssGlobal;
28444
+ "object-position"?: Suggest<CssObjectPosition>;
28445
+ "order"?: Suggest<`${number}` | CssGlobal>;
28326
28446
  /** [MDN Reference](https://developer.mozilla.org/en-US/docs/Web/CSS/image-orientation) */
28327
- "image-orientation"?: CssImageOrientation;
28447
+ "image-orientation"?: Suggest<CssImageOrientation>;
28328
28448
  /** [MDN Reference](https://developer.mozilla.org/en-US/docs/Web/CSS/image-rendering) */
28329
- "image-rendering"?: CssImageRendering;
28449
+ "image-rendering"?: Suggest<CssImageRendering>;
28330
28450
  /** [MDN Reference](https://developer.mozilla.org/en-US/docs/Web/CSS/image-resolution) */
28331
- "image-resolution"?: CssImageResolution;
28451
+ "image-resolution"?: Suggest<CssImageResolution>;
28332
28452
  /** [MDN Reference](https://developer.mozilla.org/en-US/docs/Web/CSS/hanging-punction) */
28333
- "hanging-punctuation"?: CssHangingPunctuation;
28453
+ "hanging-punctuation"?: Suggest<CssHangingPunctuation>;
28334
28454
  /** [MDN Reference](https://developer.mozilla.org/en-US/docs/Web/CSS/min-height) */
28335
- "min-height"?: CssSizing;
28455
+ "min-height"?: Suggest<CssSizing>;
28336
28456
  /** [MDN Reference](https://developer.mozilla.org/en-US/docs/Web/CSS/min-width) */
28337
- "min-width"?: CssSizing;
28457
+ "min-width"?: Suggest<CssSizing>;
28338
28458
  /** [MDN Reference](https://developer.mozilla.org/en-US/docs/Web/CSS/min-block-size) */
28339
- "min-block-size"?: CssSizing;
28459
+ "min-block-size"?: Suggest<CssSizing>;
28340
28460
  /** [MDN Reference](https://developer.mozilla.org/en-US/docs/Web/CSS/min-inline-size) */
28341
- "min-inline-size"?: CssSizing;
28461
+ "min-inline-size"?: Suggest<CssSizing>;
28342
28462
  /** [MDN Reference](https://developer.mozilla.org/en-US/docs/Web/CSS/stop-color) */
28343
- "stop-color"?: CssColorLight | CssGlobal;
28463
+ "stop-color"?: Suggest<CssColorLight | CssGlobal>;
28344
28464
  /** [MDN Reference](https://developer.mozilla.org/en-US/docs/Web/CSS/stop-opacity) */
28345
- "stop-opacity"?: `${number}` | `${number}%` | CssGlobal;
28465
+ "stop-opacity"?: Suggest<`${number}` | `${number}%` | CssGlobal>;
28346
28466
  /** [MDN Reference](https://developer.mozilla.org/en-US/docs/Web/CSS/tab-size) */
28347
- "tab-size"?: `${number}` | CssSizingLight | CssGlobal;
28467
+ "tab-size"?: Suggest<`${number}` | CssSizingLight | CssGlobal>;
28348
28468
  /** [MDN Reference](https://developer.mozilla.org/en-US/docs/Web/CSS/table-layout) */
28349
- "table-layout"?: "auto" | "fixed" | CssGlobal;
28469
+ "table-layout"?: Suggest<"auto" | "fixed" | CssGlobal>;
28350
28470
  /** [MDN Reference](https://developer.mozilla.org/en-US/docs/Web/CSS/translate) */
28351
- "translate"?: CssTranslate | CssGlobal;
28471
+ "translate"?: Suggest<CssTranslate | CssGlobal>;
28352
28472
  /** [MDN Reference](https://developer.mozilla.org/en-US/docs/Web/CSS/quotes) */
28353
- "quotes"?: string;
28473
+ "quotes"?: Suggest<string>;
28354
28474
  /** [MDN Reference](https://developer.mozilla.org/en-US/docs/Web/CSS/r) */
28355
- "r"?: CssSizingLight | CssGlobal;
28475
+ "r"?: Suggest<CssSizingLight | CssGlobal>;
28356
28476
  /** [MDN Reference](https://developer.mozilla.org/en-US/docs/Web/CSS/pointer-events) */
28357
- "pointer-events"?: PointerEvent | CssGlobal;
28477
+ "pointer-events"?: string;
28358
28478
  /** [MDN Reference](https://developer.mozilla.org/en-US/docs/Web/CSS/resize) */
28359
- "resize"?: "both" | "horizontal" | "vertical" | "none" | CssGlobal;
28479
+ "resize"?: Suggest<"both" | "horizontal" | "vertical" | "none" | CssGlobal>;
28360
28480
  /** [MDN Reference](https://developer.mozilla.org/en-US/docs/Web/CSS/rotate) */
28361
- "rotate"?: CssRotation | `x ${CssRotation}` | `y ${CssRotation}` | `z ${CssRotation}` | CssGlobal;
28362
- "row-gap"?: CssSizing;
28481
+ "rotate"?: Suggest<CssRotation | `x ${CssRotation}` | `y ${CssRotation}` | `z ${CssRotation}` | CssGlobal>;
28482
+ "row-gap"?: Suggest<CssSizing>;
28363
28483
  /** [MDN Reference](https://developer.mozilla.org/en-US/docs/Web/CSS/rx) */
28364
- "rx"?: CssSizing;
28484
+ "rx"?: Suggest<CssSizing>;
28365
28485
  /** [MDN Reference](https://developer.mozilla.org/en-US/docs/Web/CSS/ry) */
28366
- "ry"?: CssSizing;
28486
+ "ry"?: Suggest<CssSizing>;
28367
28487
  /** [MDN Reference](https://developer.mozilla.org/en-US/docs/Web/CSS/x) */
28368
- "x"?: CssSizing;
28488
+ "x"?: Suggest<CssSizing>;
28369
28489
  /** [MDN Reference](https://developer.mozilla.org/en-US/docs/Web/CSS/y) */
28370
- "y"?: CssSizing;
28490
+ "y"?: Suggest<CssSizing>;
28371
28491
  /** [MDN Reference](https://developer.mozilla.org/en-US/docs/Web/CSS/white-space) */
28372
- "white-space"?: CssWhiteSpace;
28492
+ "white-space"?: Suggest<CssWhiteSpace>;
28373
28493
  /** [MDN Reference](https://developer.mozilla.org/en-US/docs/Web/CSS/white-space-collapse) */
28374
- "white-space-collapse"?: CssWhiteSpaceCollapse;
28494
+ "white-space-collapse"?: Suggest<CssWhiteSpaceCollapse>;
28375
28495
  /** [MDN Reference](https://developer.mozilla.org/en-US/docs/Web/CSS/widows) */
28376
- "widows"?: string;
28496
+ "widows"?: Suggest<string>;
28377
28497
  /** [MDN Reference](https://developer.mozilla.org/en-US/docs/Web/CSS/will-change) */
28378
- "will-change"?: string;
28498
+ "will-change"?: Suggest<string>;
28379
28499
  /** [MDN Reference](https://developer.mozilla.org/en-US/docs/Web/CSS/word-break) */
28380
- "word-break"?: CssWordBreak;
28500
+ "word-break"?: Suggest<CssWordBreak>;
28381
28501
  /** [MDN Reference](https://developer.mozilla.org/en-US/docs/Web/CSS/word-spacing) */
28382
- "word-spacing"?: "normal" | CssSizing;
28502
+ "word-spacing"?: Suggest<"normal" | CssSizing>;
28383
28503
  /** [MDN Reference](https://developer.mozilla.org/en-US/docs/Web/CSS/writing-mode) */
28384
- "writing-mode"?: CssWritingMode;
28504
+ "writing-mode"?: Suggest<CssWritingMode>;
28385
28505
  /** [MDN Reference](https://developer.mozilla.org/en-US/docs/Web/CSS/z-index) */
28386
- "z-index"?: `${number}` | "auto" | CssGlobal;
28506
+ "z-index"?: Suggest<`${number}` | "auto" | CssGlobal>;
28387
28507
  /** [MDN Reference](https://developer.mozilla.org/en-US/docs/Web/CSS/zoom) */
28388
- "zoom"?: `${number}` | `${number}%` | "normal" | "reset" | CssGlobal;
28389
- } & CssBorderProperties & CssBackgroundProperties & CssAbsolutionPositioningProperties & CssOffsetProperties & CssBreakProperties & CssBoxProperties & CssTextProperties & CssStrokeProperties & CssJustifyProperties & CssAlignProperties & CssPlaceProperties & CssAnimationProperties & CssMarginProperties & CssPaddingProperties & CssOutlineProperties & CssOverflowProperties & CssOffsetProperties & CssTransformProperties;
28508
+ "zoom"?: Suggest<`${number}` | `${number}%` | "normal" | "reset" | CssGlobal>;
28509
+ } & CssBorderProperties & CssBackgroundProperties & CssAbsolutionPositioningProperties & CssOffsetProperties & CssBreakProperties & CssBoxProperties & CssTextProperties & CssStrokeProperties & CssJustifyProperties & CssAlignProperties & CssPlaceProperties & CssAnimationProperties & CssMarginProperties & CssPaddingProperties & CssOutlineProperties & CssOverflowProperties & CssOffsetProperties & CssTransformProperties & CssFontProperties;
28390
28510
 
28391
28511
  type CssFontFamily = `"${string}"` | "serif" | "san-serif" | "monospace" | "cursive" | "fantasy" | "system-ui" | "ui-serif" | "ui-sans-serif" | "ui-monospace" | "ui-rounded" | "emoji" | "math" | "fansong";
28392
28512
  type CssFontFeatureSetting = "normal" | "liga" | "tnum" | "smcp";
@@ -28412,9 +28532,9 @@ type CssFontWeight = "normal" | "bold" | "100" | "200" | "300" | "400" | "500" |
28412
28532
  * language, you can force the font to use Turkish glyphs, which follow similar rules.
28413
28533
  */
28414
28534
  type CssFontLanguageOverride = string;
28415
- interface FontProperties {
28535
+ interface CssFontProperties {
28416
28536
  "font-family"?: CssFontFamily | `${CssFontFamily}, ${CssFontFamily}${string}` | CssGlobal;
28417
- "font-feature-settings": CssFontFeatureSetting | `${CssFontFeatureSetting} ${number | "on" | "off"}` | `${CssFontFeatureSetting} ${number | "on" | "off"},${string}`;
28537
+ "font-feature-settings"?: CssFontFeatureSetting | `${CssFontFeatureSetting} ${number | "on" | "off"}` | `${CssFontFeatureSetting} ${number | "on" | "off"},${string}`;
28418
28538
  "font-kerning"?: CssFontKerning;
28419
28539
  "font-language-override"?: CssFontLanguageOverride;
28420
28540
  "font-size"?: CssSizing | "xx-small" | "x-small" | "small" | "medium" | "large" | "x-large" | "xx-large" | "xxx-large";
@@ -33292,30 +33412,22 @@ type UnionToTuple<U, Last = LastInUnion<U>> = [U] extends [never] ? [] : [...Uni
33292
33412
  */
33293
33413
  type UnionArrayToTuple<T> = T extends any[] ? UnionToTuple<ElementOf<T>> : never;
33294
33414
 
33295
- type Reduce$1<T extends Tuple, E> = TupleToUnion<Filter<{
33296
- [K in keyof T]: T[K] extends E ? never : T[K];
33297
- }, never>>;
33298
- type Isolate<T extends Tuple, E> = TupleToUnion<Filter<{
33299
- [K in keyof T]: T[K] extends E ? T[K] : never;
33300
- }, never>>;
33415
+ type RemoveEmptyObject<T extends readonly unknown[], R extends readonly unknown[] = []> = [] extends T ? RemoveNever<R>[number] : RemoveEmptyObject<AfterFirst<T>, [
33416
+ ...R,
33417
+ First<T> extends Dictionary ? Equals<Keys<First<T>>["length"], number> extends true ? never : First<T> : First<T>
33418
+ ]>;
33301
33419
  /**
33302
33420
  * **UnionFilter**`<U, E>`
33303
33421
  *
33304
33422
  * A type utility which receives a union type `U` and then eliminates
33305
33423
  * all elements of the union which _extend_ `E`.
33306
33424
  *
33307
- * **Related:** `UnionRetain`
33308
- */
33309
- type UnionFilter<U, E> = [U] extends [never] ? never : [IsUnion<U>] extends [true] ? Reduce$1<UnionToTuple$1<U>, E> : [U] extends [E] ? never : U;
33310
- /**
33311
- * **UnionRetain**`<U, E>`
33312
- *
33313
- * A type utility which receives a union type `U` and then eliminates
33314
- * all elements of the union which _do not extend_ `E`.
33425
+ * **Note:** _this is very much like `Exclude<U,E>` utility but can handle
33426
+ * unions of containers as well as just scalar values._
33315
33427
  *
33316
- * **Related:** `UnionFilter`
33428
+ * **Related:** `UnionRetain`
33317
33429
  */
33318
- type UnionRetain<U, E> = [U] extends [never] ? never : IsUnion<U> extends true ? Isolate<UnionToTuple$1<U>, E> : U extends E ? U : never;
33430
+ type UnionFilter<U, E> = [U] extends [never] ? never : IsUnion<U> extends true ? Some<UnionToTuple$1<E>, "extends", EmptyObject> extends true ? Exclude<RemoveEmptyObject<UnionToTuple$1<U>>, RemoveEmptyObject<UnionToTuple$1<E>>> : Exclude<U, E> : U;
33319
33431
  type UnionMutationOp = "Capitalize" | "Lowercase" | "CamelCase" | "PascalCase" | "SnakeCase" | "KebabCase";
33320
33432
  type Mutate<TElements extends readonly unknown[], TOp extends UnionMutationOp> = TOp extends "Capitalize" ? {
33321
33433
  [K in keyof TElements]: TElements[K] extends string ? Capitalize<TElements[K]> : TElements[K];
@@ -38477,4 +38589,4 @@ type LastOfEach<T extends readonly unknown[][]> = {
38477
38589
  */
38478
38590
  type SecondOfEach<T extends unknown[][]> = T[number][1] extends T[number][number] ? T[number][1] : never;
38479
38591
 
38480
- 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 AmericanExpress, 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 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 AsStringLiteral, type AsStringUnion, type AsToken, type AsTokenOpt, type AsTuple, type AsType, type AsUnion, type AsVueComputedRef, type AsyncFunction, 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 Branded, type Break, type BuildDefinition, 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 Callback, 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 CargoDependency, type CargoToml, 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 ConfigDefinition, type ConfigRestApi, type ConfiguredMap, type Consonant, type Consonants, type Constant$3 as Constant, type ConstrainObject, type ConstrainedObjectCallback, type ConstrainedObjectIdentity, type Constructor, type Container, type ContainerBlockKey, type ContainerKeyGuarantee, type Contains, type ContainsAll, type ContainsSome, 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 CreditCard, 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 Csv, 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 DeployConfig, type DialCountryCode, type Dict, type DictArray, type DictArrayFilterCallback, type DictArrayKv, type DictChangeValue, type DictKvTuple, type Dictionary, type DictionaryTypeDefn, type DictionaryWithValueFilter, type DictionaryWithoutValueFilter, type Digit, type DigitNonZero, type Digital, type DigitalLiteral, type Digitize, type DinersClub, type Discover, type Distance, type DistanceMetrics, type DistanceUom, type DnsName, type DockerCompose, type DockerDependsOn, type DockerService, type DoesExtend, type DoesExtendTypeguard, type DoesNotExtend, type DomainName, type DoneFnTuple, type DotPathFor, type DoubleQuote, type DropChars, type DutchNewsCompanies, type DutchNewsUrls, type DynamicSegment, 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 Empty, type EmptyObject, type EmptyString, type EmptyStringOr, type EndingWithTypeGuard, type EndpointGenerator, 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 ErrMsg, type ErrorCondition, type ErrorConditionHandler, type ErrorConditionShape, type EscapeFunction, type EsotericHtmlElement, type EtsyUrl, type EveryLength, 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 FnParam, type FnParams, type FnPropertiesDefn, type FnProps, type FnReturnTypeDefn, type FnWithDescription, type FnWithProps, type FontProperties, type FrenchNewsCompanies, type FrenchNewsUrls, type Frequency, type FrequencyMetrics, type FrequencyUom, type FromDefineObject, type FromDefn, type FromDictArray, type FromDynamicSegment, type FromKv, type FromLiteralTokens, type FromMaybeRef, type FromNamedDynamicSegment, type FromRecordKeyDefn, type FromShapeCallback, type FromSimpleRecordKey, type FromSimpleToken, 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 GenParam, type GenParams, type GermanNewsCompanies, type GermanNewsUrls, type Get$1 as Get, type GetDefaultPort, type GetEach, type GetEachOptions, type GetEscapeFunction, type GetInference, type GetInferenceProps, type GetOptions, type GetPhoneCountryCode, type GetPhoneNumberType, type GetQueryParameterDynamics, type GetTypeOf, type GetUrlDynamics, type GetUrlPath, type GetUrlPathDynamics, 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 Healthcheck, 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 Integer, type IntegerBrand, 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 IsAmericanExpress, type IsArray, type IsBoolean, type IsBooleanLiteral, type IsCapitalized, type IsComputedRef, type IsContainer, type IsCreditCard, type IsCssHexadecimal, type IsCsv, type IsDefined, type IsDictionaryDefinition, type IsDomainName, type IsDotPath, type IsEmptyContainer, type IsEmptyObject, type IsEmptyString, type IsEqual, type IsErr, type IsErrMsg, 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 IsOptional, type IsOptionalLiteral, type IsOptionalScalar, type IsPhoneNumber, type IsPositiveNumber, type IsReadonlyArray, type IsReadonlyObject, type IsRequired, 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 IsUndefined, type IsUnion, type IsUnionArray, type IsUnset, type IsUrl, type IsValidDotPath, type IsValidIndex, type IsVariable, type IsVisaMastercard, type IsVueRef, type IsWideContainer, type IsWideNumber, type IsWideScalar, type IsWideString, 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 Jcb, 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 KeysOverlap, type KeysUnion, type KeysWithValue, type KeysWithoutValue, type KindFrom, type KlassMeta, type KrogerUrl, type KvFn, type KvFnDefn, 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 LoggingOptions, 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, MIME_TYPES, MONTH_ABBR$1 as MONTH_ABBR, MONTH_NAME$1 as MONTH_NAME, type MacysUrl, type Maestro, 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 MapValueDefn, type Mapper, type MapperApi, type MapperOld, type Marked$5 as Marked, type Mass, type MassMetrics, type MassUom, type Mastercard, type MaxLength, type MaybeError, type MaybeRef, type Merge, type MergeKVs, type MergeObjects, type MergeScalars, type MergeTuples, type Metric, type MetricCategory, 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, NETWORK_PROTOCOL_INSECURE, NETWORK_PROTOCOL_LOOKUP$2 as NETWORK_PROTOCOL_LOOKUP, NETWORK_PROTOCOL_SECURE, 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 NamedDynamicSegment, 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 NetworkConfig, type NetworkDefinition, 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 NpmVersion, 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 ObjectApiCallback, type ObjectKey, type ObjectMap, type ObjectMapConversion, type ObjectMapper, type ObjectMapperCallback, type ObjectToApi, type ObjectToCssString, type ObjectToJsString, type ObjectToJsonString, type ObjectToKeyframeString, type ObjectToTuple, 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 OptionalKeysTuple, type OptionalParamFn, type OptionalProps, type OptionalSimpleScalarTokens, type OptionalSpace, type Or, PHONE_COUNTRY_CODES$2 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, PROTOCOL_DEFAULT_PORTS$2 as PROTOCOL_DEFAULT_PORTS, PROXMOX_CT_STATE, type PackageJson, type ParameterlessFn, type ParamsForComparison, type ParseInt, 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 PhoneNumberWithCountryCode, type PhoneShortCode, type PluralExceptions, type Pluralize, type PlusMinus, type Pop, type PortMapping, 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 RecKeyVariant, type RecVariant, type RecordKeyDefn, type RecordKeyWideTokens, 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 RestEndpoint, type RestMethod, 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 Rtn, 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, type SKeys, 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 SecretDefinition, type SemanticVersion, type SerializedComma, type SetCandidate, type SetKey, type SetKeyForce, type SetKeyStrict, type SetKeysTo, 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 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 Solo, 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 SplitAlt, type StackFrame, type StackTrace, type StandardMark, type StartingWithTypeGuard, type StartsWith, type StrLen, type StringComparatorOperation, type StringDelimiter, type StringLength, type StringLiteralFromTuple, type StringLiteralTemplate, type StringLiteralToken, type StringLiteralVar, 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, type SyncFunction, 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, type TT_Atomic, TT_CONTAINERS$2 as TT_CONTAINERS, type TT_Container, TT_DELIMITER$2 as TT_DELIMITER, TT_FUNCTIONS$2 as TT_FUNCTIONS, type TT_Function, TT_KIND_VARIANTS, TT_SETS$2 as TT_SETS, TT_SINGLETONS$2 as TT_SINGLETONS, TT_START$2 as TT_START, TT_STOP$2 as TT_STOP, type TT_Set, type TT_Singleton, 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_REC_KEY_VARIANTS$2 as TYPE_TOKEN_REC_KEY_VARIANTS, TYPE_TOKEN_REC_VARIANTS$2 as TYPE_TOKEN_REC_VARIANTS, TYPE_TOKEN_STRING_SET_VARIANTS$2 as TYPE_TOKEN_STRING_SET_VARIANTS, TYPE_TOKEN_UNION_SET_VARIANTS$2 as TYPE_TOKEN_UNION_SET_VARIANTS, 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 ToKeyValueSort, type ToKv, type ToNumber, type ToNumericArray, type ToPhoneFormat, type ToString, type ToStringArray, type ToStringLiteral, type ToUnion, type TokenContainerClosure, type TokenFunctionClosure, type TokenSetClosure, 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 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 TypeSubtype, type TypeToken, type TypeTokenAtomics, type TypeTokenContainers, type TypeTokenDelimiter, type TypeTokenFunctions, type TypeTokenKind, type TypeTokenLookup, type TypeTokenSets, type TypeTokenSingletons, type TypeTokenStart, type TypeTokenStop, type TypeToken__Boolean, type TypeToken__False, type TypeToken__Fn, type TypeToken__FnSet, type TypeToken__Gen, type TypeToken__Never, type TypeToken__Null, type TypeToken__Number, type TypeToken__NumberSet, type TypeToken__Rec, type TypeToken__String, type TypeToken__StringSet, type TypeToken__True, type TypeToken__Undefined, type TypeToken__UnionSet, type TypeToken__Unknown, 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 UnionShift, type UnionToIntersection, type UnionToTuple$1 as UnionToTuple, 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 UrlPathChars, type UrlPort, type UrlQueryParameters, type UrlsFrom, type UsNewsCompanies, type UsNewsUrls, type UsPhoneNumber, 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 Variable, type VariableChar, type Visa, type VisaMastercard, type Voltage, type VoltageMetrics, type VoltageUom, type Volume, type VolumeDefinition, type VolumeMapping, 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 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, cardType, choices, createConstant, createConverter, createCssKeyframe, createCssSelector, createErrorCondition, createFifoQueue, createFixedLengthArray, createFnWithProps, createFnWithPropsExplicit, createLifoQueue, createMapper, createObjectMap, createTypeToken, cssColor, cssFromDefinition, csv, defineCss, defineObj, defineObject, defineObjectApi, defineTuple, doesExtend, endsWith, ensureLeading, ensureSurround, ensureTrailing, entries, errCondition, filter, find, fnMeta, fromDefineObject, fromKeyValue, get, getDaysBetween, getEach, getPhoneCountryCode, getTailwindModifiers, getToday, getTokenKind, getTomorrow, getTypeSubtype, getUrlBase, getUrlDefaultPort, getUrlDynamics, getUrlPath, getUrlPort, getUrlProtocol, getUrlQueryParams, getUrlSource, getWeekNumber, getYesterday, getYouTubePageType, handleDoneFn, hasCountryCode, hasDefaultValue, hasIndexOf, hasKeys, hasOverlappingKeys, hasProtocol, hasProtocolPrefix, 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, infer, intersect, intersection, ip6GroupExpansion, ip6Prefix, isAccelerationMetric, isAccelerationUom, isAlpha, isAmazonUrl, isAmericanExpress, isApi, isApiSurface, isAppleUrl, isAreaMetric, isAreaUom, isArray, isArrayToken, isAtomicKind, isAtomicToken, isAustralianNewsUrl, isBelgiumNewsUrl, isBestBuyUrl, isBitbucketUrl, isBoolean, isBooleanLike, isBox, isCanadianNewsUrl, isChineseNewsUrl, isCodeCommitUrl, isConstant, isContainer, isContainerToken, isCostCoUrl, isCountryAbbrev, isCountryCode2, isCountryCode3, isCountryName, isCreditCard, isCssAspectRatio, isCsv, isCurrentMetric, isCurrentUom, isCvsUrl, isDanishNewsUrl, isDate, isDefineObject, isDefined, isDellUrl, isDistanceMetric, isDistanceUom, isDomainName, isDoneFn, isDutchNewsUrl, isEbayUrl, isEmail, isEmpty, isEnergyMetric, isEnergyUom, isEqual, isErrorCondition, isEscapeFunction, isEtsyUrl, isFalse, isFalsy, isFnBasedKind, isFnBasedToken, isFnWithParams, isFrenchNewsUrl, isFrequencyMetric, isFrequencyUom, isFunction, 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, isMap, isMapToken, isMassMetric, isMassUom, isMastercard, isMetric, isMexicanNewsUrl, isMoment, isNarrowableObject, isNever, isNewsUrl, isNikeUrl, isNorwegianNewsUrl, isNotNull, isNothing, isNull, isNumber, isNumberLike, isNumericArray, isNumericString, isObject, isObjectToken, isOptionalParamFunction, isPhoneNumber, isPowerMetric, isPowerUom, isPressureMetric, isPressureUom, isProtocol, isProtocolPrefix, isReadonlyArray, isRecordToken, isRef, isRegExp, isRepoSource, isRepoUrl, isResistance, isResistanceUom, isRetailUrl, isSameTypeOf, isScalar, isSemanticVersion, isSet, isSetBasedKind, isSetBasedToken, isSetContainer, isSetToken, isShape, isShapeCallback, isSimpleContainerToken, isSimpleContainerTokenTuple, isSimpleScalarToken, isSimpleScalarTokenTuple, isSimpleToken, isSimpleTokenTuple, isSingletonKind, 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, isTypeSubtype, isTypeToken, isTypeTokenKind, isTypeTuple, isUkNewsUrl, isUndefined, isUnset, isUom, isUri, isUrl, isUrlPath, isUrlSource, isUsNewsUrl, isUsPhoneNumber, isUsStateAbbreviation, isUsStateName, isVariable, isVisa, isVisaMastercard, isVoltageMetric, isVoltageUom, isVolumeMetric, isVolumeUom, isVueRef, isWalgreensUrl, isWalmartUrl, isWayfairUrl, 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, maybePhoneNumber, mergeObjects, mergeScalars, mergeTuples, nameLiteral, narrow, narrowObjectTo, narrowObjectToType, never, objectToApi, objectValues, 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, toKeyValue, toNumber, toNumericArray, toPascalCase, toSnakeCase, toString, toUppercase, trim, trimEnd, trimLeft, trimRight, trimStart, truncate, tuple, twColor, unbox, uncapitalize, union, unionize, unique, uniqueKeys, unset, uppercase, urlMeta, valuesOf, widen, withDefaults, withKeys, withValue, withoutKeys, withoutValue, wrapFn, youtubeEmbed, youtubeMeta };
38592
+ 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 AmericanExpress, 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 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 AsStringLiteral, type AsStringUnion, type AsToken, type AsTokenOpt, type AsTuple, type AsType, type AsUnion, type AsVueComputedRef, type AsyncFunction, 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 Branded, type Break, type BuildDefinition, 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 Callback, 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 CargoDependency, type CargoToml, 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 ConfigDefinition, type ConfigRestApi, type ConfiguredMap, type Consonant, type Consonants, type Constant$3 as Constant, type ConstrainObject, type ConstrainedObjectCallback, type ConstrainedObjectIdentity, type Constructor, type Container, type ContainerBlockKey, type ContainerKeyGuarantee, type Contains, type ContainsAll, type ContainsSome, 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 CreditCard, 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 CssFontProperties, type CssFontStyle, type CssFontSynthesis, type CssFontWeight, type CssFontWidth, type CssFromDefnOption, 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 Csv, 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 DeployConfig, type DialCountryCode, type Dict, type DictArray, type DictArrayFilterCallback, type DictArrayKv, type DictChangeValue, type DictKvTuple, type Dictionary, type DictionaryTypeDefn, type DictionaryWithValueFilter, type DictionaryWithoutValueFilter, type Digit, type DigitNonZero, type Digital, type DigitalLiteral, type Digitize, type DinersClub, type Discover, type Distance, type DistanceMetrics, type DistanceUom, type DnsName, type DockerCompose, type DockerDependsOn, type DockerService, type DoesExtend, type DoesExtendTypeguard, type DoesNotExtend, type DomainName, type DoneFnTuple, type DotPathFor, type DoubleQuote, type DropChars, type DutchNewsCompanies, type DutchNewsUrls, type DynamicSegment, 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 Empty, type EmptyObject, type EmptyString, type EmptyStringOr, type EndingWithTypeGuard, type EndpointGenerator, 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 ErrMsg, type ErrorCondition, type ErrorConditionHandler, type ErrorConditionShape, type EscapeFunction, type EsotericHtmlElement, type EtsyUrl, type EveryLength, 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 FnParam, type FnParams, type FnPropertiesDefn, type FnProps, type FnReturnTypeDefn, type FnWithDescription, type FnWithProps, type FrenchNewsCompanies, type FrenchNewsUrls, type Frequency, type FrequencyMetrics, type FrequencyUom, type FromDefineObject, type FromDefn, type FromDictArray, type FromDynamicSegment, type FromKv, type FromLiteralTokens, type FromMaybeRef, type FromNamedDynamicSegment, type FromRecordKeyDefn, type FromShapeCallback, type FromSimpleRecordKey, type FromSimpleToken, 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 GenParam, type GenParams, type GermanNewsCompanies, type GermanNewsUrls, type Get$1 as Get, type GetDefaultPort, type GetEach, type GetEachOptions, type GetEscapeFunction, type GetInference, type GetInferenceProps, type GetOptions, type GetPhoneCountryCode, type GetPhoneNumberType, type GetQueryParameterDynamics, type GetTypeOf, type GetUrlDynamics, type GetUrlPath, type GetUrlPathDynamics, 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 Healthcheck, 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 Integer, type IntegerBrand, 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 IsAmericanExpress, type IsArray, type IsBoolean, type IsBooleanLiteral, type IsCapitalized, type IsComputedRef, type IsContainer, type IsCreditCard, type IsCssHexadecimal, type IsCsv, type IsDefined, type IsDictionaryDefinition, type IsDomainName, type IsDotPath, type IsEmptyContainer, type IsEmptyObject, type IsEmptyString, type IsEqual, type IsErr, type IsErrMsg, 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 IsOptional, type IsOptionalLiteral, type IsOptionalScalar, type IsPhoneNumber, type IsPositiveNumber, type IsReadonlyArray, type IsReadonlyObject, type IsRequired, 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 IsUndefined, type IsUnion, type IsUnionArray, type IsUnset, type IsUrl, type IsValidDotPath, type IsValidIndex, type IsVariable, type IsVisaMastercard, type IsVueRef, type IsWideContainer, type IsWideNumber, type IsWideScalar, type IsWideString, 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 Jcb, 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 KeysOverlap, type KeysUnion, type KeysWithValue, type KeysWithoutValue, type KindFrom, type KlassMeta, type KrogerUrl, type KvFn, type KvFnDefn, 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 LoggingOptions, 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, MIME_TYPES, MONTH_ABBR$1 as MONTH_ABBR, MONTH_NAME$1 as MONTH_NAME, type MacysUrl, type Maestro, 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 MapValueDefn, type Mapper, type MapperApi, type MapperOld, type Marked$5 as Marked, type Mass, type MassMetrics, type MassUom, type Mastercard, type MaxLength, type MaybeError, type MaybeRef, type Merge, type MergeKVs, type MergeObjects, type MergeScalars, type MergeTuples, type Metric, type MetricCategory, 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, NETWORK_PROTOCOL_INSECURE, NETWORK_PROTOCOL_LOOKUP$2 as NETWORK_PROTOCOL_LOOKUP, NETWORK_PROTOCOL_SECURE, 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 NamedDynamicSegment, 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 NetworkConfig, type NetworkDefinition, 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 NpmVersion, 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 ObjectApiCallback, type ObjectKey, type ObjectMap, type ObjectMapConversion, type ObjectMapper, type ObjectMapperCallback, type ObjectToApi, type ObjectToCssString, type ObjectToJsString, type ObjectToJsonString, type ObjectToKeyframeString, type ObjectToTuple, 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 OptionalKeysTuple, type OptionalParamFn, type OptionalProps, type OptionalSimpleScalarTokens, type OptionalSpace, type Or, PHONE_COUNTRY_CODES$2 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, PROTOCOL_DEFAULT_PORTS$2 as PROTOCOL_DEFAULT_PORTS, PROXMOX_CT_STATE, type PackageJson, type ParameterlessFn, type ParamsForComparison, type ParseInt, 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 PhoneNumberWithCountryCode, type PhoneShortCode, type PluralExceptions, type Pluralize, type PlusMinus, type Pop, type PortMapping, 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 RecKeyVariant, type RecVariant, type RecordKeyDefn, type RecordKeyWideTokens, 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 RestEndpoint, type RestMethod, 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 Rtn, 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, type SKeys, 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 SecretDefinition, type SemanticVersion, type SerializedComma, type SetCandidate, type SetKey, type SetKeyForce, type SetKeyStrict, type SetKeysTo, 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 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 Solo, 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 SplitAlt, type StackFrame, type StackTrace, type StandardMark, type StartingWithTypeGuard, type StartsWith, type StrLen, type StringComparatorOperation, type StringDelimiter, type StringLength, type StringLiteralFromTuple, type StringLiteralTemplate, type StringLiteralToken, type StringLiteralVar, 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, type SyncFunction, 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, type TT_Atomic, TT_CONTAINERS$2 as TT_CONTAINERS, type TT_Container, TT_DELIMITER$2 as TT_DELIMITER, TT_FUNCTIONS$2 as TT_FUNCTIONS, type TT_Function, TT_KIND_VARIANTS, TT_SETS$2 as TT_SETS, TT_SINGLETONS$2 as TT_SINGLETONS, TT_START$2 as TT_START, TT_STOP$2 as TT_STOP, type TT_Set, type TT_Singleton, 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_REC_KEY_VARIANTS$2 as TYPE_TOKEN_REC_KEY_VARIANTS, TYPE_TOKEN_REC_VARIANTS$2 as TYPE_TOKEN_REC_VARIANTS, TYPE_TOKEN_STRING_SET_VARIANTS$2 as TYPE_TOKEN_STRING_SET_VARIANTS, TYPE_TOKEN_UNION_SET_VARIANTS$2 as TYPE_TOKEN_UNION_SET_VARIANTS, 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 ToKeyValueSort, type ToKv, type ToNumber, type ToNumericArray, type ToPhoneFormat, type ToString, type ToStringArray, type ToStringLiteral, type ToUnion, type TokenContainerClosure, type TokenFunctionClosure, type TokenSetClosure, 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 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 TypeSubtype, type TypeToken, type TypeTokenAtomics, type TypeTokenContainers, type TypeTokenDelimiter, type TypeTokenFunctions, type TypeTokenKind, type TypeTokenLookup, type TypeTokenSets, type TypeTokenSingletons, type TypeTokenStart, type TypeTokenStop, type TypeToken__Boolean, type TypeToken__False, type TypeToken__Fn, type TypeToken__FnSet, type TypeToken__Gen, type TypeToken__Never, type TypeToken__Null, type TypeToken__Number, type TypeToken__NumberSet, type TypeToken__Rec, type TypeToken__String, type TypeToken__StringSet, type TypeToken__True, type TypeToken__Undefined, type TypeToken__UnionSet, type TypeToken__Unknown, 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 UnionShift, type UnionToIntersection, type UnionToTuple$1 as UnionToTuple, 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 UrlPathChars, type UrlPort, type UrlQueryParameters, type UrlsFrom, type UsNewsCompanies, type UsNewsUrls, type UsPhoneNumber, 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 Variable, type VariableChar, type Visa, type VisaMastercard, type Voltage, type VoltageMetrics, type VoltageUom, type Volume, type VolumeDefinition, type VolumeMapping, 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 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, cardType, choices, createConstant, createConverter, createCssKeyframe, createCssSelector, createErrorCondition, createFifoQueue, createFixedLengthArray, createFnWithProps, createFnWithPropsExplicit, createLifoQueue, createMapper, createObjectMap, createTypeToken, cssColor, cssFromDefinition, csv, defineCss, defineObj, defineObject, defineObjectApi, defineTuple, doesExtend, endsWith, ensureLeading, ensureSurround, ensureTrailing, entries, errCondition, filter, filterEmpty, find, fnMeta, fromDefineObject, fromKeyValue, get, getDaysBetween, getEach, getPhoneCountryCode, getTailwindModifiers, getToday, getTokenKind, getTomorrow, getTypeSubtype, getUrlBase, getUrlDefaultPort, getUrlDynamics, getUrlPath, getUrlPort, getUrlProtocol, getUrlQueryParams, getUrlSource, getWeekNumber, getYesterday, getYouTubePageType, handleDoneFn, hasCountryCode, hasDefaultValue, hasIndexOf, hasKeys, hasOverlappingKeys, hasProtocol, hasProtocolPrefix, 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, infer, intersect, intersection, ip6GroupExpansion, ip6Prefix, isAccelerationMetric, isAccelerationUom, isAlpha, isAmazonUrl, isAmericanExpress, isApi, isApiSurface, isAppleUrl, isAreaMetric, isAreaUom, isArray, isArrayToken, isAtomicKind, isAtomicToken, isAustralianNewsUrl, isBelgiumNewsUrl, isBestBuyUrl, isBitbucketUrl, isBoolean, isBooleanLike, isBox, isCanadianNewsUrl, isChineseNewsUrl, isCodeCommitUrl, isConstant, isContainer, isContainerToken, isCostCoUrl, isCountryAbbrev, isCountryCode2, isCountryCode3, isCountryName, isCreditCard, isCssAspectRatio, isCsv, isCurrentMetric, isCurrentUom, isCvsUrl, isDanishNewsUrl, isDate, isDefineObject, isDefined, isDellUrl, isDistanceMetric, isDistanceUom, isDomainName, isDoneFn, isDutchNewsUrl, isEbayUrl, isEmail, isEmpty, isEnergyMetric, isEnergyUom, isEqual, isErrorCondition, isEscapeFunction, isEtsyUrl, isFalse, isFalsy, isFnBasedKind, isFnBasedToken, isFnWithParams, isFrenchNewsUrl, isFrequencyMetric, isFrequencyUom, isFunction, 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, isMap, isMapToken, isMassMetric, isMassUom, isMastercard, isMetric, isMexicanNewsUrl, isMoment, isNarrowableObject, isNever, isNewsUrl, isNikeUrl, isNorwegianNewsUrl, isNotEmpty, isNotNull, isNothing, isNull, isNumber, isNumberLike, isNumericArray, isNumericString, isObject, isObjectToken, isOptionalParamFunction, isPhoneNumber, isPowerMetric, isPowerUom, isPressureMetric, isPressureUom, isProtocol, isProtocolPrefix, isReadonlyArray, isRecordToken, isRef, isRegExp, isRepoSource, isRepoUrl, isResistance, isResistanceUom, isRetailUrl, isSameTypeOf, isScalar, isSemanticVersion, isSet, isSetBasedKind, isSetBasedToken, isSetContainer, isSetToken, isShape, isShapeCallback, isSimpleContainerToken, isSimpleContainerTokenTuple, isSimpleScalarToken, isSimpleScalarTokenTuple, isSimpleToken, isSimpleTokenTuple, isSingletonKind, 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, isTypeSubtype, isTypeToken, isTypeTokenKind, isTypeTuple, isUkNewsUrl, isUndefined, isUnset, isUom, isUri, isUrl, isUrlPath, isUrlSource, isUsNewsUrl, isUsPhoneNumber, isUsStateAbbreviation, isUsStateName, isVariable, isVisa, isVisaMastercard, isVoltageMetric, isVoltageUom, isVolumeMetric, isVolumeUom, isVueRef, isWalgreensUrl, isWalmartUrl, isWayfairUrl, 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, maybePhoneNumber, mergeObjects, mergeScalars, mergeTuples, nameLiteral, narrow, narrowObjectTo, narrowObjectToType, never, objectToApi, objectValues, 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, toKeyValue, toNumber, toNumericArray, toPascalCase, toSnakeCase, toString, toUppercase, trim, trimEnd, trimLeft, trimRight, trimStart, truncate, tuple, twColor, unbox, uncapitalize, union, unionize, unique, uniqueKeys, unset, uppercase, urlMeta, valuesOf, widen, withDefaults, withKeys, withValue, withoutKeys, withoutValue, wrapFn, youtubeEmbed, youtubeMeta };