inferred-types 1.2.1 → 1.2.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/modules/constants/dist/index.d.ts.map +1 -1
- package/modules/inferred-types/dist/index.d.cts +66 -6
- package/modules/inferred-types/dist/index.d.cts.map +1 -1
- package/modules/inferred-types/dist/index.d.ts +66 -6
- package/modules/inferred-types/dist/index.d.ts.map +1 -1
- package/modules/runtime/dist/index.d.cts +15 -3
- package/modules/runtime/dist/index.d.cts.map +1 -1
- package/modules/runtime/dist/index.d.ts +15 -3
- package/modules/runtime/dist/index.d.ts.map +1 -1
- package/modules/types/dist/index.d.cts +51 -3
- package/modules/types/dist/index.d.cts.map +1 -1
- package/modules/types/dist/index.d.ts +51 -3
- package/modules/types/dist/index.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -7535,7 +7535,7 @@ type TypedError$1<T extends string = string, S extends string | undefined = stri
|
|
|
7535
7535
|
subType: S;
|
|
7536
7536
|
[key: string]: any;
|
|
7537
7537
|
}>;
|
|
7538
|
-
type
|
|
7538
|
+
type _Err$1<TType extends string = string, TMsg extends string = string, TCtx extends Record<string, any> = EmptyObject$1> = TType extends `${infer Type}/${infer Subtype}` ? Expand$1<{
|
|
7539
7539
|
name: PascalCase$1<TCtx["name"] extends string ? TCtx["name"] : RetainUntil$1<TType, "/"> extends string ? RetainUntil$1<TType, "/"> : never>;
|
|
7540
7540
|
type: KebabCase$1<Type>;
|
|
7541
7541
|
subType: Subtype extends string ? KebabCase$1<Subtype> : undefined;
|
|
@@ -7549,6 +7549,16 @@ type Err$2$1<TType extends string = string, TMsg extends string = string, TCtx e
|
|
|
7549
7549
|
cause?: unknown;
|
|
7550
7550
|
stack?: string;
|
|
7551
7551
|
} & TCtx> & Error;
|
|
7552
|
+
/**
|
|
7553
|
+
* **Err**`<TType, TMsg, TCtx>`
|
|
7554
|
+
*
|
|
7555
|
+
* Create a strongly typed error with type and subType information.
|
|
7556
|
+
*
|
|
7557
|
+
* - TType assigns the type to the errors `type` property until a `/` character is found
|
|
7558
|
+
* - the `subType` property is the string literal portion of `TType` after the `/` character
|
|
7559
|
+
* - any key/value pairs on `TCtx` will be available on the error too
|
|
7560
|
+
*/
|
|
7561
|
+
type Err$2$1<TType extends string = string, TMsg extends string = string, TCtx extends Record<string, any> = EmptyObject$1> = string extends TType ? string extends TMsg ? IsEqual$1<TCtx, EmptyObject$1> extends true ? Error : _Err$1<TType, TMsg, TCtx> : _Err$1<TType, TMsg, TCtx> : _Err$1<TType, TMsg, TCtx>;
|
|
7552
7562
|
/**
|
|
7553
7563
|
* Adds "context" to an existing `Error`.
|
|
7554
7564
|
*/
|
|
@@ -12364,6 +12374,8 @@ type Process$2$1<T, N extends number> = N extends 0 ? [] : MapItemType$1<GrowExp
|
|
|
12364
12374
|
*
|
|
12365
12375
|
* - if `TOpt` is set to true then it will add an optional
|
|
12366
12376
|
* continuation of the type to unlimited length
|
|
12377
|
+
*
|
|
12378
|
+
* **Related:** `NumericSequence`
|
|
12367
12379
|
*/
|
|
12368
12380
|
type FixedLengthArray$1$1<TType, TLen extends NumberLike$2, TExtends extends boolean = false> = TExtends extends true ? Process$2$1<TType, AsNumber$1<TLen>> extends readonly unknown[] ? [...Process$2$1<TType, AsNumber$1<TLen>>, ...TType[]] : never : Process$2$1<TType, AsNumber$1<TLen>> extends readonly unknown[] ? Process$2$1<TType, AsNumber$1<TLen>> : never;
|
|
12369
12381
|
//#endregion
|
|
@@ -14885,7 +14897,7 @@ declare function getUrlQueryParams<T extends string, S extends string | undefine
|
|
|
14885
14897
|
* Returns the default port which the given URL string would use
|
|
14886
14898
|
* based on the protocol detected in this string.
|
|
14887
14899
|
*/
|
|
14888
|
-
declare function getUrlDefaultPort<T extends string>(url: T): 22 | 21 | 23 | 25 | 80 | 443 | 53 | 853 |
|
|
14900
|
+
declare function getUrlDefaultPort<T extends string>(url: T): 142 | 22 | 21 | 23 | 25 | 80 | 443 | 53 | 853 | 110;
|
|
14889
14901
|
/**
|
|
14890
14902
|
* **getUrlPort**`(url, [resolve])`
|
|
14891
14903
|
*
|
|
@@ -15347,7 +15359,7 @@ declare function asInputToken<const T extends InputToken$1$1>(token: T): string
|
|
|
15347
15359
|
* that `InputToken__Object` and `InputToken__Tuple` are converted
|
|
15348
15360
|
* to string representations.
|
|
15349
15361
|
*/
|
|
15350
|
-
declare function toStringToken<T extends InputToken$1$1>(token: T): "string |
|
|
15362
|
+
declare function toStringToken<T extends InputToken$1$1>(token: T): "string | false | true | symbol | number | null | bigint | void | { } | [ ]" | undefined;
|
|
15351
15363
|
//# sourceMappingURL=asStringInputToken.d.ts.map
|
|
15352
15364
|
//#endregion
|
|
15353
15365
|
//#region src/runtime-types/tokens/input-tokens/fromDefineObject.d.ts
|
|
@@ -40446,7 +40458,7 @@ type TypedError<T extends string = string, S extends string | undefined = string
|
|
|
40446
40458
|
subType: S;
|
|
40447
40459
|
[key: string]: any;
|
|
40448
40460
|
}>;
|
|
40449
|
-
type
|
|
40461
|
+
type _Err<TType extends string = string, TMsg extends string = string, TCtx extends Record<string, any> = EmptyObject> = TType extends `${infer Type}/${infer Subtype}` ? Expand<{
|
|
40450
40462
|
name: PascalCase<TCtx["name"] extends string ? TCtx["name"] : RetainUntil<TType, "/"> extends string ? RetainUntil<TType, "/"> : never>;
|
|
40451
40463
|
type: KebabCase<Type>;
|
|
40452
40464
|
subType: Subtype extends string ? KebabCase<Subtype> : undefined;
|
|
@@ -40460,6 +40472,16 @@ type Err<TType extends string = string, TMsg extends string = string, TCtx exten
|
|
|
40460
40472
|
cause?: unknown;
|
|
40461
40473
|
stack?: string;
|
|
40462
40474
|
} & TCtx> & Error;
|
|
40475
|
+
/**
|
|
40476
|
+
* **Err**`<TType, TMsg, TCtx>`
|
|
40477
|
+
*
|
|
40478
|
+
* Create a strongly typed error with type and subType information.
|
|
40479
|
+
*
|
|
40480
|
+
* - TType assigns the type to the errors `type` property until a `/` character is found
|
|
40481
|
+
* - the `subType` property is the string literal portion of `TType` after the `/` character
|
|
40482
|
+
* - any key/value pairs on `TCtx` will be available on the error too
|
|
40483
|
+
*/
|
|
40484
|
+
type Err<TType extends string = string, TMsg extends string = string, TCtx extends Record<string, any> = EmptyObject> = string extends TType ? string extends TMsg ? IsEqual<TCtx, EmptyObject> extends true ? Error : _Err<TType, TMsg, TCtx> : _Err<TType, TMsg, TCtx> : _Err<TType, TMsg, TCtx>;
|
|
40463
40485
|
/**
|
|
40464
40486
|
* Adds "context" to an existing `Error`.
|
|
40465
40487
|
*/
|
|
@@ -40472,7 +40494,6 @@ type ErrContext<T extends Error, C extends Dictionary> = Expand<Omit<T, keyof C>
|
|
|
40472
40494
|
* - if `T` is _not_ an error then it will be proxied through "as is".
|
|
40473
40495
|
*/
|
|
40474
40496
|
type WhenErr<T, C extends Dictionary> = T extends Error ? ErrContext<T, C> & Error : T;
|
|
40475
|
-
//# sourceMappingURL=Err.d.ts.map
|
|
40476
40497
|
//#endregion
|
|
40477
40498
|
//#region src/errors/ErrMsg.d.ts
|
|
40478
40499
|
type ErrMsg<TType extends string, TContext extends AnyObject | string = "no desc"> = TContext extends string ? TType & {
|
|
@@ -42675,6 +42696,8 @@ type Process$17<T, N extends number> = N extends 0 ? [] : MapItemType<GrowExp<[0
|
|
|
42675
42696
|
*
|
|
42676
42697
|
* - if `TOpt` is set to true then it will add an optional
|
|
42677
42698
|
* continuation of the type to unlimited length
|
|
42699
|
+
*
|
|
42700
|
+
* **Related:** `NumericSequence`
|
|
42678
42701
|
*/
|
|
42679
42702
|
type FixedLengthArray<TType, TLen extends NumberLike, TExtends extends boolean = false> = TExtends extends true ? Process$17<TType, AsNumber<TLen>> extends readonly unknown[] ? [...Process$17<TType, AsNumber<TLen>>, ...TType[]] : never : Process$17<TType, AsNumber<TLen>> extends readonly unknown[] ? Process$17<TType, AsNumber<TLen>> : never;
|
|
42680
42703
|
//#endregion
|
|
@@ -42706,6 +42729,43 @@ type LastOfEach<T extends readonly unknown[][]> = { [K in keyof T]: T[K] extends
|
|
|
42706
42729
|
type MinLengthArray<T, L extends number> = [...FixedLengthArray<T, L>, ...T[]];
|
|
42707
42730
|
//# sourceMappingURL=MinLengthArray.d.ts.map
|
|
42708
42731
|
//#endregion
|
|
42732
|
+
//#region src/tuples/NumericSequence.d.ts
|
|
42733
|
+
/**
|
|
42734
|
+
* General-purpose increment that works with any integer (positive or negative)
|
|
42735
|
+
*
|
|
42736
|
+
* - For positive numbers: uses AddPositive<T, 1>
|
|
42737
|
+
* - For negative numbers: uses Subtract<T, -1> (subtracting negative = addition)
|
|
42738
|
+
*/
|
|
42739
|
+
type LocalIncrement<T extends number> = IsNegativeNumber<T> extends true ? Subtract<T, -1> : AddPositive<T, 1>;
|
|
42740
|
+
/**
|
|
42741
|
+
* General-purpose decrement that works with any integer (positive or negative)
|
|
42742
|
+
*
|
|
42743
|
+
* - Uses Subtract<T, 1> for both positive and negative numbers
|
|
42744
|
+
*/
|
|
42745
|
+
type LocalDecrement<T extends number> = Subtract<T, 1>;
|
|
42746
|
+
type MoveUpward<TTracker extends readonly unknown[], TStart extends number, TResult extends readonly number[] = []> = TTracker extends [infer _Head, ...infer Rest extends readonly unknown[]] ? LocalIncrement<TStart> extends infer Next extends number ? MoveUpward<Rest, Next, [...TResult, TStart]> : never : [...TResult, TStart];
|
|
42747
|
+
type MoveDownward<TTracker extends readonly unknown[], TStart extends number, TResult extends readonly number[] = []> = TTracker extends [infer _Head, ...infer Rest extends readonly unknown[]] ? LocalDecrement<TStart> extends infer Next extends number ? MoveDownward<Rest, Next, [...TResult, TStart]> : never : [...TResult, TStart];
|
|
42748
|
+
/**
|
|
42749
|
+
* **NumericSequence**
|
|
42750
|
+
*
|
|
42751
|
+
* Produces a tuple with values starting with `TStart` and ending with `TEnd`.
|
|
42752
|
+
*
|
|
42753
|
+
* - numbers must be integers or an Error will be returned
|
|
42754
|
+
* - if `TEnd` is greater than `TStart` the numeric sequence will move downward
|
|
42755
|
+
*
|
|
42756
|
+
* **Related:** `FixedLengthArray`
|
|
42757
|
+
*
|
|
42758
|
+
* ```ts
|
|
42759
|
+
* // [ 3, 4, 5, 6, 7, 8 ]
|
|
42760
|
+
* type Seq = NumericSequence<3,8>;
|
|
42761
|
+
* ```
|
|
42762
|
+
*/
|
|
42763
|
+
type NumericSequence<TStart extends number, TEnd extends number> = number extends TStart ? number[] : number extends TEnd ? number[] : TStart extends TEnd ? [] : Or<[IsFloat<TStart>, IsFloat<TEnd>]> extends true ? Err<"invalid-range", `TStart and TEnd must be integer values!`, {
|
|
42764
|
+
symbol: "NumericSequence";
|
|
42765
|
+
start: TStart;
|
|
42766
|
+
end: TEnd;
|
|
42767
|
+
}> : Delta$1<TStart, TEnd> extends infer Diff extends number ? FixedLengthArray<".", Diff> extends infer Tracker extends readonly unknown[] ? IsGreaterThan<TStart, TEnd> extends true ? MoveDownward<Tracker, TStart> : MoveUpward<Tracker, TStart> : never : never;
|
|
42768
|
+
//#endregion
|
|
42709
42769
|
//#region src/tuples/SecondOfEach.d.ts
|
|
42710
42770
|
/**
|
|
42711
42771
|
* For a two-dimensional array, returns a _union type_ which combines the first element of the interior
|
|
@@ -47910,5 +47970,5 @@ type ValidateLength<T extends string | number | readonly unknown[], O extends Va
|
|
|
47910
47970
|
//#endregion
|
|
47911
47971
|
|
|
47912
47972
|
//#endregion
|
|
47913
|
-
export { ACCELERATION_METRICS_LOOKUP, ALPHA_CHARS, AMAZON_BOOKS, AMAZON_DNS, APPLE_DNS, AREA_METRICS_LOOKUP, AUSTRALIAN_NEWS, Abs, AbsMaybe, Acceleration, AccelerationMetrics, AccelerationUom, Add, AddIfUnique, AddKeyValue, AddPositive, AddUrlPathSegment, AfterFirst, AfterFirstChar, AfterLast, AllCaps, AllExtend, AllLengthOf, AllLiteral, AllNumericLiterals, AllOptionalElements, AllStringLiterals, AlphaChar, AlphanumericChar, AmazonUrl, AmericanExpress, And, AnyArray, AnyFunction, AnyMap, AnyObject, AnyQueryParams, AnySet, AnyWeakMap, Api, ApiCallback, ApiConfig, ApiEscape, ApiHandler, ApiOptions, ApiReturn, ApiState, ApiStateInitializer, ApiSurface, Append, AppendRight, AppleUrl, ApplyTemplate, AreIncompatible, AreSameLength, AreSameType, Area, AreaMetrics, AreaUom, ArgUnion, AriaDocStructureRoles, AriaLandmarkRoles, AriaLiveRegionRoles, AriaRole, AriaWidgetRoles, AriaWindowRoles, ArrayElementType, ArrayTo, ArrayToString, ArrayTypeDefn, As, AsApi, AsArray, AsBoolean, AsChoice, AsClassSelector, AsContainer, AsDateMeta, AsDefined, AsDictionary, AsDoneFn, AsEscapeFunction, AsFinalizedConfig, AsFnMeta, AsFourDigitYear, AsFromTo, AsFunction, AsHtmlComponentTag, AsHtmlTag, AsIndexOf, AsInputToken, AsLeft, AsLeftRight, AsLiteralTemplate, AsNarrowingFn, AsNegativeNumber, AsNonNull, AsNumber, AsNumberWhenPossible, AsNumericArray, AsObject, AsObjectKey, AsObjectKeys, AsOptionalParamFn, AsOutputToken, AsPropertyKey, AsRecord, AsRef, AsRelativeDate, AsRight, AsSimpleType, AsSomething, AsStaticFn, AsStaticTemplate, AsString, AsStringUnion, AsTakeState, AsTemplateType, AsTemplateTypes, AsTuple, AsTwoDigitMonth, AsTypeSubtype, AsUnion, AsUnionOptions, AsUnionToken, AsVueComputedRef, AssertAssertionError, AssertContains, AssertEqual, AssertEquals, AssertError, AssertExtends, AssertFalse, AssertNotEqual, AssertSameValues, AssertTrue, AssertValidation, AssertionError, AssertionMapper, AssertionOp, AsyncFunction, Asynchronous, AustralianNewsCompanies, AustralianNewsUrls, AvailableConverters, Awaited$1 as Awaited, BCP47, BELGIUM_NEWS, BEST_BUY_DNS, BLOOD_MARKERS_LOOKUP, BRACKET_AND_QUOTE_NESTING, BRACKET_NESTING, BRANDED, BackTick, BareCssSelector, BaseRuntimeType, BaseType, BaseTypeToken, BeforeLast, BelgianNewsCompanies, BelgianNewsUrls, BespokeLiteral, BespokeUnion, BestBuyUrl, BetweenScope, BooleanLike, BooleanSort, BooleanSortOptions, Box, Bracket, BracketAndQuoteNesting, BracketNesting, Brand, BrandSymbol, Break$1 as Break, BuildDefinition, CANADIAN_NEWS, CHEWY_DNS, CHINESE_NEWS, COMMA, COMMON_OBJ_PROPS, COMPARISON_OPERATIONS, CONSONANTS, CONTINENTS, COSTCO_DNS, CSS_NAMED_COLORS, CSV, CURRENT_METRICS_LOOKUP, CVS_DNS, Callback$1 as Callback, CamelCase, CamelKeys, CanadianNewsCompanies, CanadianNewsUrls, CapFirstAlpha, CapitalizeEachUnionMember, CapitalizeWords, Cardinality$1 as Cardinality, Cardinality0, Cardinality1, CardinalityExplicit, CardinalityFilter0, CardinalityFilter1, CardinalityIn, CardinalityInput, CardinalityNode, CardinalityOut, CargoDependency, CargoToml, CharCount, Chars, ChewyUrl, ChineseNewsCompanies, ChineseNewsUrls, Choice, ChoiceApi, ChoiceApiConfig, ChoiceApiOptions, ChoiceBuilder, ChoiceCallback, ChoiceValue, ClosingBracket, ClosingMark, ClosingMarkPlus, CodePointOf, ColorFnOptOpacity, ColorFnValue, ColorParam, CombinedKeys, CommonHtmlElement, CommonObjProps, Comparator, Compare, CompareNumbers, ComparisonAccept, ComparisonDesc, ComparisonFn, ComparisonLookup, ComparisonMode, ComparisonOpConfig, ComparisonOperation, ComparisonParamConvert, ComparisonParamConvert__List, ComparisonParamConvert__Unit, Concat, ConfigDefinition, ConfiguredMap, Consonant, Consonants, Constant, ConstrainObject, ConstrainedObjectCallback, ConstrainedObjectIdentity, Constructor, Container, ContainerBlockKey, ContainerKeyGuarantee, Contains, ContainsAll, ContainsSome, Continent, Conversion, ConvertTypeOf, ConvertWideTokenNames, ConverterCoverage, ConverterDefn, CostCoUrl, CostcoUrl, Count$1 as Count, CountryPhoneNumber, Cr, CrThenIndent, CreateChoice, CreateDictHash, CreateDictShape, CreateKV, CreateLookup, CreditCard, CssAbsolutionPositioningProperties, CssAlignContent, CssAlignItems, CssAlignProperties, CssAlignSelf, CssAnimation, CssAnimationComposition, CssAnimationDelay, CssAnimationDirection, CssAnimationDuration, CssAnimationFillMode, CssAnimationIterationCount, CssAnimationPlayState, CssAnimationProperties, CssAnimationTimingFunction, CssAppearance, CssAspectRatio, CssBackdropFilter, CssBackgroundProperties, CssBorderCollapse, CssBorderImageRepeat, CssBorderImageSource, CssBorderInlineSizing, CssBorderProperties, CssBorderStyle, CssBorderWidth, CssBoxAlign, CssBoxDecorationBreak, CssBoxProperties, CssBoxShadow, CssBoxSizing, CssBreak, CssBreakInside, CssBreakProperties, CssCalc, CssClamp, CssClassSelector, CssColor, CssColorFn, CssColorLight, CssColorMix, CssColorMixLight, CssColorModel, CssColorSpace, CssColorSpacePrimary, CssContent, CssCursor, CssDefinition, CssDisplay, CssDisplayStatePseudoClasses, CssFlex, CssFlexBasis, CssFlexDirection, CssFlexFlow, CssFlexGrow, CssFlexShrink, CssFloat, CssFontFamily, CssFontFeatureSetting, CssFontKerning, CssFontLanguageOverride, CssFontPalette, CssFontProperties, CssFontStyle, CssFontSynthesis, CssFontWeight, CssFontWidth, CssFromDefnOption, CssFunctionalPseudoClass, CssGap, CssGlobal, CssHangingPunctuation, CssHexColor, CssHsb, CssHsl, CssIdSelector, CssImageOrientation, CssImageRendering, CssImageResolution, CssInputPseudoClasses, CssJustifyContent, CssJustifyItems, CssJustifyProperties, CssJustifySelf, CssKeyframeCallback, CssKeyframeTimestamp, CssKeyframeTimestampSuggest, CssLetterSpacing, CssLinguisticPseudoClasses, CssListStyle, CssLocationPseudoClasses, CssMargin, CssMarginBlock, CssMarginBlockEnd, CssMarginBlockStart, CssMarginBottom, CssMarginInline, CssMarginInlineEnd, CssMarginInlineStart, CssMarginLeft, CssMarginProperties, CssMarginRight, CssMarginTop, CssMixBlendMode, CssNamedColors, CssNamedSizes, CssObjectFit, CssObjectPosition, CssOffsetDistance, CssOffsetPath, CssOffsetPosition, CssOffsetProperties, CssOkLch, CssOpacity, CssOutline, CssOutlineColor, CssOutlineOffset, CssOutlineProperties, CssOutlineStyle, CssOutlineWidth, CssOverflowAnchor, CssOverflowBlock, CssOverflowClipMargin, CssOverflowInline, CssOverflowProperties, CssOverflowX, CssOverflowY, CssPadding, CssPaddingBlock, CssPaddingBlockEnd, CssPaddingBlockStart, CssPaddingBottom, CssPaddingInline, CssPaddingInlineEnd, CssPaddingInlineStart, CssPaddingLeft, CssPaddingProperties, CssPaddingRight, CssPaddingTop, CssPerspectiveOrigin, CssPlaceContent, CssPlaceItems, CssPlaceProperties, CssPlaceSelf, CssPointerEvent, CssPosition, CssProperty, CssPseudoClass, CssPseudoClassDefn, CssResourceStatePseudoClasses, CssRgb, CssRgba, CssRotation, CssRound, CssSelector, CssSelectorOptions, CssSizing, CssSizingFunction, CssSizingLight, CssStroke, CssStrokeDasharray, CssStrokeProperties, CssTagSelector, CssTextAlign, CssTextDecorationLine, CssTextDecorationStyle, CssTextIndent, CssTextJustify, CssTextOrientation, CssTextOverflow, CssTextPosition, CssTextProperties, CssTextRendering, CssTextTransform, CssTextWrap, CssTextWrapMode, CssTextWrapStyle, CssTimePseudoClasses, CssTiming, CssTransform, CssTransformBox, CssTransformOrigin, CssTransformProperties, CssTransformStyle, CssTranslate, CssTranslateFn, CssTreePseudoClasses, CssUserActionPseudoClasses, CssVar, CssVarWithFallback, CssWhiteSpace, CssWhiteSpaceCollapse, CssWordBreak, CssWritingMode, Csv, CsvFormat, CsvToJsonTuple, CsvToStrUnion, CsvToTuple, CsvToTupleStr, CsvToUnion, Current, CurrentMetrics, CurrentUom, CvsUrl, DANISH_NEWS, DATE_TYPE, DAYS_OF_WEEK__Mon, DAYS_OF_WEEK__Sun, DEFAULT_MANY_TO_ONE_MAPPING, DEFAULT_ONE_TO_MANY_MAPPING, DEFAULT_ONE_TO_ONE_MAPPING, DELL_DNS, DISTANCE_METRICS_LOOKUP, DOUBLE_LEAP_M1, DOUBLE_LEAP_M2, DOUBLE_LEAP_M3, DOUBLE_LEAP_M4, DOUBLE_LEAP_M5, DOUBLE_LEAP_MODERN, DUTCH_NEWS, DanishNewsCompanies, DanishNewsUrls, DashToSnake, DashUppercase, DateLike, DateMeta, DatePlus, DateSeparator, DateSource, DateType, DayJsLike, DaysInMonth, DecomposeMapConfig, Decrement, DefaultManyToOneMapping, DefaultNesting, DefaultOneToManyMapping, DefaultOneToOneMapping, DefaultOptions, DefaultTemplateBlocks, DefineModifiers, DefineObject, DefineObjectApi, DefineObjectWith, DefineStatelessApi, DefineTokenDetail, DefineTuple, Defined, DellUrl, Delta$1 as Delta, DeltaLight, DeployConfig, DialCountryCode, Dict$1 as Dict, DictChangeValue, Dictionary, DictionaryTypeDefn, Digit, DigitNonZero, Digital, DigitalLiteral, Digitize, DinersClub, Discover, Distance, DistanceMetrics, DistanceUom, DistinguishEmpty, Divide, DnsName, DockerCompose, DockerDependsOn, DockerService, DoesExtend, DoesExtendTypeguard, DoesNotExtend, DomainName, DoneFnTuple, DotPathFor, DoubleQuote, DropChars, DropLeading, DropTrailing, DropVariadic, DropVariadicHead, DropVariadicTail, DutchNewsCompanies, DutchNewsUrls, DynamicSegment, DynamicToken, DynamicTokenApi, EBAY_DNS, EDITORS, ENERGY_METRICS_LOOKUP, ETSY_DNS, Each, EachAsString, EachAsStringLiteralTemplate, EachOperation, EbayUrl, ElementOf, Email, Empty, EmptyObject, EmptyString, EncodingDefinition, EndsWith, EndsWithNumber, Energy, EnergyMetrics, EnergyUom, EnsureKeys, EnsureLeading, EnsureLeadingEvery, EnsureSurround, EnsureTrailing, EpochInMs, EpochInSeconds, Equals, EqualsSome__Partial, Err, ErrContext, ErrMsg, ErrType, EscapeFunction, EscapeRegex, EscapedSafeEncodingConversion, EsotericHtmlElement, EtsyUrl, Even, EvenNumber, Every, EveryLength, ExcludeIndex, Exif, ExifAttributionInfo, ExifCameraInfo, ExifCompression, ExifContrast, ExifDateTimeInfo, ExifEmbedPolicy, ExifExtraneous, ExifFlashValues, ExifGainControl, ExifGps, ExifLightSource, ExifPhotoContext, ExifPreviewColorSpace, ExifSaturation, ExifSceneCaptureType, ExifSharpness, ExifSubjectDistance, Expand, ExpandDictionary, ExpandRecursively, ExpandTuple, ExpandUnion, Expect, ExplicitFunction, ExplicitlyEmptyObject, Extends, ExtendsAll, ExtendsEvery, ExtendsNone, ExtendsSome, ExtractCaptureGroups, ExtractOptionalElements, ExtractOptionalKeys, ExtractRequiredElements, FALSY_TYPE_KINDS, FALSY_VALUES, FRENCH_NEWS, FREQUENCY_METRICS_LOOKUP, Fail$1 as Fail, FailFast, FailFastOptions, Fallback, FalsyValue, FifoQueue, FillStringHole, Filter, FilterByNestingLevel, FilterFn, FinalizedMapConfig, Find, FindFunction, FindMaxLength, First$1 as First, FirstChar, FirstDefined, FirstKey, FirstOfEach, FirstSet, FirstString, FirstValue, FixedLengthArray, Flatten, FlattenUnion, FluentApi, FluentFn, FluentState, FnAllowingProps, FnArgsDefn, FnDefn, FnFrom, FnKeyValue, FnMeta, FnMetaShape, FnPropertiesDefn, FnReturn, FnReturnTypeDefn, FnWithDescription, FnWithProps, FourDigitYear, FrenchNewsCompanies, FrenchNewsUrls, Frequency, FrequencyMetrics, FrequencyUom, FromCsv, FromDefineObject, FromDefineTuple, FromDefn, FromDynamicSegment, FromInputToken, FromInputToken__Object, FromInputToken__String, FromInputToken__Tuple, FromKv, FromLiteralTemplate, FromLiteralTokens, FromMaybeRef, FromNamedDynamicSegment, FromNamedNestingConfig, FromNesting, FromRecordKeyDefn, FromShapeCallback, FromSimpleRecordKey, FromSimpleToken, FromTo, FromTypeDefn, FromWideTokens, FullWidthQuotation, FullyQualifiedUrl, GERMAN_NEWS, GITHUB_INSIGHT_CATEGORY_LOOKUP, GenericParam, GermanNewsCompanies, GermanNewsUrls, Get, GetBrand, GetComparator, GetComparisonParams, GetDefaultPort, GetEach, GetEachOptions, GetEscapeFunction, GetFixedKeys, GetIndexKeys, GetInference, GetInferenceProps, GetInputToken, GetMonthAbbrev, GetMonthName, GetMonthNumber, GetNestingEnd, GetNonVariadicLength, GetOpConfig, GetOptionalElementCount, GetOptions, GetPhoneCountryCode, GetPhoneNumberType, GetQueryParameterDynamics, GetRequiredElementCount, GetSeason, GetTemplateBlocks, GetTemplateParams, GetTokenNames, GetTypeOf, GetUrlDynamics, GetUrlPath, GetUrlPathDynamics, GetUrlPort, GetUrlProtocol, GetUrlProtocolPrefix, GetUrlQueryParams, GetUrlSource, GetYear, GetYouTubePageType, GitRef, GithubActionsUrl, GithubInsightPageType, GithubInsightUrl, GithubOrgUrl, GithubRepoBranchesUrl, GithubRepoDiscussionUrl, GithubRepoDiscussionsUrl, GithubRepoIssueUrl, GithubRepoIssuesListUrl, GithubRepoProjectUrl, GithubRepoProjectsUrl, GithubRepoPullRequestUrl, GithubRepoPullRequestsUrl, GithubRepoReleaseTagUrl, GithubRepoReleasesUrl, GithubRepoTagsUrl, GithubRepoUrl, GithubUrl, Grammar, GrammarEncoder, GrammarTypeDefinition, HASH_TABLE_ALPHA_LOWER, HASH_TABLE_ALPHA_UPPER, HASH_TABLE_CHAR, HASH_TABLE_DIGIT, HASH_TABLE_OTHER, HASH_TABLE_SPECIAL, HASH_TABLE_WIDE, HEMISPHERE, HM_DNS, HOME_DEPOT_DNS, HTML_ATOMIC_TAGS, HTML_BLOCK_TAGS, HandMUrl, Handle, HandleDoneFn, HasAny, HasArray, HasCharacters, HasErrors, HasEscapeFunction, HasEvery, HasFalse, HasFunctionKeys, HasIndex, HasIndexKeys, HasIndexSignature, HasIpAddress, HasModifier, HasNetworkProtocolReference, HasNever, HasNoParameters, HasNonTemplateLiteral, HasOneParameter, HasOptionalElements, HasOptionalElements__Tuple, HasOtherCharacters, HasParameters, HasPhoneCountryCode, HasProp, HasQueryParameter, HasRequiredElements, HasRequiredProps, HasSameKeys, HasSameValues, HasTemplateLiteral, HasTrue, HasTypedFunctionKeys, HasUnionType, HasUppercase, HasUrlPath, HasUrlSource, HasVariadicHead, HasVariadicInterior, HasVariadicParameters, HasVariadicTail, HasWideBoolean, HasWideValues, HaveSameNumericSign, Healthcheck, Hemisphere, HexColor, Hexadecimal, HexadecimalChar, HomeDepotUrl, HtmlBodyElement, HtmlElement, HtmlFrameworkElement, HtmlFunctionalElement, HtmlHeaderElement, HtmlInputElement, HtmlListElement, HtmlMediaElement, HtmlStructuralElement, HtmlSymantecElement, HtmlTableElement, HtmlTag, HtmlTagAtomic, HtmlTagClose, HtmlTagOpen, Html__AtomicTag, Html__BlockTag, HttpHeader, HttpHeaders, HttpHeadingKeys, HttpVerb, HttpVerbsWithBody, HttpVerbsWithoutBody, IANA_TIMEZONES, IANA_TIMEZONES__AFRICA, IANA_TIMEZONES__AMERICA, IANA_TIMEZONES__ANTARCTICA, IANA_TIMEZONES__ASIA, IANA_TIMEZONES__ATLANTIC, IANA_TIMEZONES__AUSTRALIA, IANA_TIMEZONES__EUROPE, IANA_TIMEZONES__INDIAN, IANA_TIMEZONES__OTHER, IANA_TIMEZONES__PACIFIC, IKEA_DNS, IMAGE_FORMAT_LOOKUP, INDIAN_NEWS, INTERPOLATION_BLOCKS, IP6Multicast, IP6Unicast, IPv4, IPv6, ISO3166_1, ISO_DATE_30, ISO_DATE_31, ITALIAN_NEWS, IT_ATOMIC_TOKENS, IT_AtomicToken, IT_BooleanLiteralToken, IT_CONTAINER_TOKENS, IT_Combinators, IT_Failure, IT_Generics, IT_KvType, IT_LITERAL_TOKENS, IT_NumericLiteralToken, IT_Parameter, IT_ParameterResults, IT_StringLiteralToken, IT_TakeArray, IT_TakeAtomic, IT_TakeFunction, IT_TakeGenerator, IT_TakeGroup, IT_TakeIntersection, IT_TakeKind, IT_TakeKvObjects, IT_TakeLiteralArray, IT_TakeNumericLiteral, IT_TakeObjectLiteral, IT_TakeOutcome, IT_TakeParameters, IT_TakePromise, IT_TakeSet, IT_TakeStringLiteral, IT_TakeTokenGeneric, IT_TakeTokenGenerics, IT_TakeUnion, IT_Token, IT_Token_Array, IT_Token_Atomic, IT_Token_Base, IT_Token_Function, IT_Token_Generator, IT_Token_Group, IT_Token_Intersection, IT_Token_Kv, IT_Token_Literal, IT_Token_Literal_Array, IT_Token_Object_Literal, IT_Token_Promise, IT_Token_Set, IT_Token_Union, IT_TupleToOutputToken, IanaAfrica, IanaAmerica, IanaAntarctica, IanaAsia, IanaEurope, IanaPacific, IanaZone, IanaZoneArea, IdentityFn, IdentityFunction, If, IfAllExtend, IfAllLiteral, IfEqual, IfEquals, IfLeft, IfLength, IfLiteralKind, IfNever, IfUnset, IfUnsetOrUndefined, IkeaUrl, ImgFormat, ImgFormatWeb, Immutable, InBetween, InBetweenOptions, Increment, Indent, Indent2, Indent4, IndentSpaces, IndentTab, IndexOf, Indexable, IndexableObject, IndianNewsCompanies, IndianNewsUrls, InlineSvg, InputToken, InputTokenSuggestions, InputToken__SimpleTokens, Integer, IntegerBrand, InternationalPhoneNumber, IntersectingKeys, Intersection, IntersectionToTuple, IntoTemplate, Inverse, InvertNumericSign, Ip4Address, Ip4AddressLike, Ip4Netmask16, Ip4Netmask24, Ip4Netmask32, Ip4Netmask8, Ip4NetmaskSuggestion, Ip4Octet, Ip4Subnet, Ip4SubnetLike, Ip6Address, Ip6AddressFull, Ip6AddressLike, Ip6Group, Ip6GroupExpansion, Ip6Loopback, Ip6Subnet, Ip6SubnetLike, IsAfter, IsAllCaps, IsAllLowercase, IsAlphanumeric, IsAmericanExpress, IsAny, IsAnyEqual, IsArray, IsAtomicTag, IsBalanced, IsBefore, IsBetweenExclusively, IsBetweenInclusively, IsBoolean, IsBooleanLiteral, IsBranded, IsCapitalized, IsComputedRef, IsContainer, IsCreditCard, IsCssHexadecimal, IsCsv, IsDateLike, IsDayJs, IsDefined, IsDictionary, IsDictionaryDefinition, IsDomainName, IsDotPath, IsDoubleLeap, IsEmpty, IsEmptyArray, IsEmptyContainer, IsEmptyObject, IsEmptyString, IsEpochInMilliseconds, IsEpochInSeconds, IsEqual, IsErrMsg, IsError, IsEscapeFunction, IsFalse, IsFalsy, IsFloat, IsFnWithDictionary, IsFourDigitYear, IsFunction, IsGreaterThan, IsGreaterThanOrEqual, IsHexadecimal, IsHtmlClosingTag, IsInputToken, IsInputTokenSuccess, IsInteger, IsIp4Address, IsIp4Octet, IsIp6Address, IsIp6HexGroup, IsIpAddress, IsIsoDate, IsIsoDateTime, IsIsoFullDate, IsIsoFullDateTime, IsIsoMonthDate, IsIsoTime, IsIsoYear, IsIsoYearMonth, IsIterable, IsJsDate, IsLeapYear, IsLength, IsLessThan, IsLessThanOrEqual, IsLiteral, IsLiteralContainer, IsLiteralFn, IsLiteralKind, IsLiteralLike, IsLiteralLikeArray, IsLiteralLikeObject, IsLiteralLikeTuple, IsLiteralNumber, IsLiteralObject, IsLiteralScalar, IsLiteralString, IsLiteralTuple, IsLiteralUnion, IsLowerAlpha, IsLuxonDateTime, IsMixedUnion, IsMoment, IsNarrower, IsNarrowingFn, IsNegativeNumber, IsNestingConfig, IsNestingEnd, IsNestingKeyValue, IsNestingMatchEnd, IsNestingStart, IsNestingTuple, IsNever, IsNonEmptyContainer, IsNonEmptyObject, IsNonLiteralUnion, IsNotEqual, IsNothing, IsNull, IsNumber, IsNumberLike, IsNumericLiteral, IsObject, IsObjectKeyRequiringQuotes, IsOk, IsOptional, IsPhoneNumber, IsPositiveNumber, IsReadonlyArray, IsReadonlyObject, IsRequired, IsSameContainerType, IsSameDay, IsSameMonth, IsSameMonthYear, IsSameYear, IsScalar, IsSet, IsSingleChar, IsSingleSided, IsSingularNoun, IsStaticFn, IsStaticTemplate, IsStrictEmptyObject, IsStrictPromise, IsString, IsStringLiteral, IsSubstring, IsSymbol, IsTemplateLiteral, IsThenable, IsTrue, IsTruthy, IsTuple, IsTwoDigitDate, IsTwoDigitMonth, IsUndefined, IsUnion, IsUnionArray, IsUniqueSymbol, IsUnitPrimitive, IsUnknown, IsUnset, IsUrl, IsValidDotPath, IsValidIndex, IsVariable, IsVariadicArray, IsVisaMastercard, IsVueRef, IsWhitespace, IsWideArray, IsWideBoolean, IsWideContainer, IsWideNumber, IsWideObject, IsWideScalar, IsWideString, IsWideSymbol, IsWideType, IsWideUnion, IsYouTubePlaylist, IsYouTubeUrl, IsYouTubeVideoUrl, Iso3166Alpha2Lookup, Iso3166Alpha3Lookup, Iso3166CodeLookup, Iso3166CountryLookup, Iso3166_1_Alpha2, Iso3166_1_Alpha3, Iso3166_1_CountryCode, Iso3166_1_CountryName, Iso3166_1_Lookup, Iso3166_1_Token, IsoDate$1 as IsoDate, IsoDate30, IsoDate31, IsoDateTime, IsoFullDate, IsoFullDateTimeLike, IsoModernDoubleLeap, IsoMonthDate, IsoTime, IsoTimeLike, IsoYear, IsoYearMonth, IsolateErrors, IsolatedResults, ItalianNewsCompanies, ItalianNewsUrls, JAPANESE_NEWS, JapaneseNewsCompanies, JapaneseNewsUrls, Jcb, Join, Joiner, JsDateLike, JsonRxEncodingSpecifier, JsonRxMessageEncoding, JsonRxPayloadEncoding, JsonRxProtocol, JustFunction, KROGER_DNS, KebabCase, KebabKeys, KeyOf, KeyValue, KeyframeApi, Keys$1 as Keys, KeysEqualValue, KeysNotEqualValue, KeysOverlap, KeysUnion, KeysWithError, KeysWithValue, KeysWithoutValue, KlassMeta, KrogerUrl, KvFn, KvFnDefn, LITERAL_TYPE_KINDS, LOWER_ALPHA_CHARS, LOWES_DNS, LUMINOSITY_METRICS_LOOKUP, Last$1 as Last, LastChar, LastOfEach, LeadingNonAlpha, Left$1 as Left, LeftContains, LeftDoubleMark, LeftEquals, LeftExtends, LeftHeavyDoubleTurned, LeftHeavySingleTurned, LeftIncludes, LeftLowDoublePrime, LeftReversedDoublePrime, LeftRight, LeftRight__Operations, LeftSingleMark, LeftWhitespace, Length, LessThan, LessThanOrEqual, LexerDelta, LexerState, LifoQueue, LikeRegExp, List, LiteralFnModifiers, LiteralLikeModifiers, LiteralModifiers, LiteralNumberModifiers, LiteralObjectModifiers, LiteralStringModifiers, LocalPhoneNumber, LoggingOptions, Logic, LogicFunction, LogicHandler, LogicOptions, LogicalCombinator, LogicalReturns, Longest, LowerAllCaps, LowerAlphaChar, LowesUrl, Luminosity, LuminosityMetrics, LuminosityUom, LuxonLikeDateTime, LuxonStaticDateTime, MACYS_DNS, MARKED, MASS_METRICS_LOOKUP, MEXICAN_NEWS, MIME_TYPES, MONTH_ABBR, MONTH_ABBREV_LOOKUP, MONTH_NAME, MONTH_NAME_LOOKUP, MONTH_TO_SEASON_LOOKUP, MacysUrl, Maestro, MakeKeysOptional, MakeKeysRequired, MakeOptional, MakePropsMutable, MakeRequired, ManyToMany, ManyToOne, ManyToZero, MapCard, MapCardinality, MapCardinalityFrom, MapCardinalityIllustrated, MapConfig, MapCoverage, MapFn, MapFnInput, MapFnOutput, MapIR, MapInput, MapInputFrom, MapKeyDefn, MapKeys, MapKeysOptions, MapOR, MapOutput, MapOutputFrom, MapTo, MapToString, MapValueDefn, MapperApi, MapperOld, Marked, Mass, MassMetrics, MassUom, Mastercard, Max$1 as Max, MaxLength, MaxSafeInteger, MaybeRef, Merge, MergeKVs, MergeObjects, MergeScalars, MergeTuples, Metric, MetricCategory, MetricTypeGuard, MexicanNewsCompanies, MexicanNewsUrls, MimeTypes, Min$1 as Min, MinLength, MinLengthArray, MinimalDigitDate, MinimalDigitDate__Suffixed, MixObjects, Mod, ModernDoubleLeap, MomentLike, MonthAbbrev, MonthDateDigit, MonthInSeason, MonthName, MonthNumber, MonthNumeric, MultiChoiceCallback, MultipleChoice, Multiply, Mutable, MutableProps, MutablePropsExclusive, NARROW_CONTAINER_TYPE_KINDS, NBSP, NETWORK_PROTOCOL, NETWORK_PROTOCOL_INSECURE, NETWORK_PROTOCOL_LOOKUP, NETWORK_PROTOCOL_SECURE, NIKE_DNS, NON_BREAKING_SPACE, NON_ZERO_NUMERIC_CHAR, NORWEGIAN_NEWS, NOT_APPLICABLE, NOT_DEFINED, NO_DEFAULT_VALUE, NO_MATCH, NUMERIC_CHAR, NUMERIC_DIGIT, NamedColor, NamedColorMinimal, NamedColor_Blue, NamedColor_Brown, NamedColor_Cyan, NamedColor_Gray, NamedColor_Green, NamedColor_Orange, NamedColor_Pink, NamedColor_Purple, NamedColor_Red, NamedColor_White, NamedColor_Yellow, NamedDynamicSegment, NamingConvention, Narrow, NarrowContainer, NarrowDictProps, NarrowObject, Narrowable, NarrowableDefined, NarrowableScalar, NarrowingFn, NarrowlyContains, NegDelta, Negative, Nest, NestedSplit, NestedSplitPolicy, NestedString, Nesting, NestingApi, NestingConfig__Named, NestingKeyValue, NestingTuple, NetworkConfig, NetworkDefinition, NetworkProtocol, NetworkProtocolPrefix, Never, NewsUrls, NextDigit, NikeUrl, NoDefaultValue, NoMatch, NodeCallback, NonAlphaChar, NonArray, NonBreakingSpace, NonNumericKeys, NonStringKeys, NonZeroNumericChar, None, NorwegianNewsCompanies, NorwegianNewsUrls, Not, NotApplicable, NotDefined, NotEqual, NotFilter, NotLength, NotNull, Nothing, NpmVersion, NumberLike, NumericChar, NumericChar__NonZero, NumericChar__OneToFive, NumericChar__OneToFour, NumericChar__OneToThree, NumericChar__OneToTwo, NumericChar__ZeroToFive, NumericChar__ZeroToFour, NumericChar__ZeroToOne, NumericChar__ZeroToThree, NumericChar__ZeroToTwo, NumericKeys, NumericRange, NumericSign, NumericSort, NumericSortOptions, OPTION, ObjKeyDefn, ObjectApiCallback, ObjectKey, ObjectKeys, ObjectMap, ObjectMapConversion, ObjectMapper, ObjectMapperCallback, ObjectToApi, ObjectToCssString, ObjectToJsString, ObjectToJsonString, ObjectToKeyframeString, ObjectToString, ObjectValuesAsStringLiteralTemplate, OddNumber, OldSchoolHtmlElement, OnPass, OnPassRemap, OneOf, OneToMany, OneToOne, OneToZero, OnlyFixedKeys, OnlyFn, OnlyFnProps, OnlyIndexKeys, OnlyOptional, OpeningBracket, OpeningMark, OpeningMarkPlus, Opt$1 as Opt, OptCr, OptCrThenIndent, OptDictProps, OptModifier, OptNumber, OptPercent, OptRecord, OptRequired, OptSpace, OptSpace2, OptSpace4, OptUrlQueryParameters, OptWhitespace, OptionalKeys, OptionalKeysTuple, OptionalParamFn, OptionalProps, OptionalSimpleScalarTokens, OptionalSpace, Or, OutputToken, PHONE_COUNTRY_CODES, PHONE_FORMAT, PLURAL_EXCEPTIONS, PLURAL_EXCEPTIONS_OLD, POWER_METRICS_LOOKUP, PRESSURE_METRICS_LOOKUP, PROTOCOL_DEFAULT_PORTS, PROXMOX_CT_STATE, PackageJson, PadEnd, PadStart, ParameterlessFn, ParseDate, ParseInt, ParseTime, ParsedDate, ParsedTime, PascalCase, PascalKeys, Passthrough, PathJoin, PhoneAreaCode, PhoneCountryCode, PhoneCountryLookup, PhoneFormat, PhoneNumber, PhoneNumberDelimiter, PhoneNumberType, PhoneNumberWithCountryCode, PhoneShortCode, PluralExceptions, Pluralize, PlusMinus, Pop, PortMapping, PortSpecifierOptions, Power, PowerMetrics, PowerUom, Precision, Prepend, PrependAll, Pressure, PressureMetrics, PressureUom, PriorDigit, PrivateKey, PrivateKeyOf, PrivateKeys, PromiseAll, Promised, Promisify, PropertyChar, ProtocolOptions, ProxyErr, PublicKeyOf, PublicKeys, Punctuation, Push, QUOTE_NESTING, QuotationMark, QuotationMarkPlus, QuoteCharacter, QuoteNesting, REPO_PAGE_TYPES, REPO_SOURCES, REPO_SOURCE_LOOKUP, RESISTANCE_METRICS_LOOKUP, RESULT, RawPhoneNumber, ReadonlyKeys, ReadonlyProps, RecKeyVariant, RecVariant, RecordKeyDefn, RecordKeyWideTokens, RecordValueTypeDefn, ReduceValues, RegexArray, RegexExecFn, RegexGroupValue, RegexHandlingStrategy, RegexTestFn, RegularExpression, RegularFn, RelativeUrl, RemoveEmpty, RemoveFnProps, RemoveFromEnd, RemoveFromStart, RemoveHttpProtocol, RemoveIndex, RemoveIndexKeys, RemoveMarked, RemoveNetworkProtocol, RemoveNever, RemovePhoneCountryCode, RemoveUndefined, RemoveUrlPort, RemoveUrlSource, RemoveWhitespace, RenameKey, RenderTime, Repeat, Replace, ReplaceAll, ReplaceAllFromTo, ReplaceAllToFrom, ReplaceBooleanInterpolation, ReplaceFromTo, ReplaceLast, ReplaceNumericInterpolation, ReplaceStringInterpolation, ReplaceType, RepoPageType, RepoSource, RepoUrls, RequireProps, RequiredKeys, RequiredKeysTuple, RequiredProps, RequiredSimpleScalarTokens, Resistance, ResistanceMetrics, ResistanceUom, ResolvedTokenType, RestEndpoint, RestMethod, RetailUrl, RetainAfter, RetainAfterLast, RetainBetween, RetainChars, RetainLiterals, RetainUntil, RetainUntil__Nested, RetainWhile, RetainWideTypes, ReturnTypes, ReturnValues, Returns, ReturnsBoolean, ReturnsFalse, ReturnsTrue, Reverse, ReverseLookup, Rfc1812, Rfc1812Like, RgbColor, RgbaColor, Right$1 as Right, RightContains, RightDoubleMark, RightEquals, RightExtends, RightHeavyDoubleTurned, RightHeavySingleTurned, RightIncludes, RightReversedDoublePrime, RightSingleMark, RightWhitespace, RuntimeSetType, RuntimeSetType__Intersection, RuntimeSetType__Union, RuntimeTakeFunction, RuntimeType, RuntimeType__Atomic, RuntimeType__Function, RuntimeType__Generator, RuntimeType__Kv, RuntimeType__Literal, RuntimeType__Set, RuntimeUnion, SAFE_ENCODING_KEYS, SAFE_ENCODING__BRACKETS, SAFE_ENCODING__QUOTES, SAFE_ENCODING__WHITESPACE, SAFE_STRING, SEASONS, SEASON_TO_MONTH_LOOKUP, SHAPE_DELIMITER, SHAPE_PREFIXES, SIMPLE_ARRAY_TOKENS, SIMPLE_CONTAINER_TOKENS, SIMPLE_DICT_TOKENS, SIMPLE_DICT_VALUES, SIMPLE_FN_TOKENS, SIMPLE_MAP_KEYS, SIMPLE_MAP_TOKENS, SIMPLE_MAP_VALUES, SIMPLE_OPT_SCALAR_TOKENS, SIMPLE_SCALAR_TOKENS, SIMPLE_SET_TOKENS, SIMPLE_SET_TYPES, SIMPLE_TOKENS, SIMPLE_UNION_TOKENS, SINGULAR_NOUN_ENDINGS, SKeys, SOCIAL_MEDIA, SOUTH_KOREAN_NEWS, SPANISH_NEWS, SPEED_METRICS_LOOKUP, SWISS_NEWS, SafeDecode, SafeDecodingConversion, SafeDecodingKey__Brackets, SafeDecodingKey__Quotes, SafeDecodingKey__Whitespace, SafeEncode, SafeEncodeEscaped, SafeEncodingConversion, SafeEncodingGroup, SafeEncodingKey__Brackets, SafeEncodingKey__Quotes, SafeEncodingKey__Whitespace, SafeString, SafeStringDecoder, SafeStringEncoder, SafeStringSymbol, Scalar, ScalarCallback, ScalarNotSymbol, Season, Second$1 as Second, SecondOfEach, SecretDefinition, SemanticDependency, SemanticVersion, SerializedComma, SerializedData, Set$1 as Set, SetCandidate, SetIndex, SetKey, SetKeyForce, SetKeyStrict, SetKeysTo, SetToString, Shape, ShapeApi, ShapeApiImplementation, ShapeApi__Scalars, ShapeCallback, ShapeSuggest, ShapeTupleOrUnion, SharedKeys, Shift, ShiftDecimalPlace, Shortest, SimpleArrayToken, SimpleContainerToken, SimpleDictToken, SimpleMapToken, SimpleScalarToken, SimpleSetToken, SimpleToken, SimpleType, SimpleTypeArray, SimpleTypeDict, SimpleTypeMap, SimpleTypeScalar, SimpleTypeSet, SimpleTypeUnion, SimpleUnionToken, SimplifyObject, SingleQuote, SingularNoun, SingularNounEnding, SizingUnits, Slice, SliceArray, SliceString, SmartMark, SmartMarkPlus, SnakeCase, SnakeKeys, SocialMediaPlatform, SocialMediaProfileUrl, SocialMediaUrl, Solo, Some, SomeEqual, SomeExtend, Something, Sort, SortByKey, SortByKeyOptions, SortOptions, SortOrder, SouthKoreanNewsCompanies, SouthKoreanNewsUrls, SpanishNewsCompanies, SpanishNewsUrls, SpecialChar, Speed, SpeedMetrics, SpeedUom, Split, Split2, SplitAtVariadic, SplitOnWhitespace, StackFrame, StackTrace, StandardMark, StartingWithTypeGuard, StartsWith, StartsWithNumber, StartsWithTemplateLiteral, StaticFn, StaticTakeFunction__CallBack, StaticTakeFunction__Rtn, StaticTemplateSections, StaticToken, StaticTokenApi, StrLen, StringDelimiter, StringEncoder, StringIsAfter, StringKeys, StringLength, StringLiteralFromTuple, StringLiteralTemplate, StringLiteralToken, StringLiteralType, StringSort, StringSortOptions, StringTokenUtilities, StripAfter, StripAfterLast, StripBefore, StripChars, StripFirst, StripLeading, StripLeadingStringTemplate, StripLeadingTemplate, StripLeftNonAlpha, StripSlash, StripSurround, StripSurroundConfigured, StripSurrounding, StripSurroundingStringTemplate, StripTrailing, StripTrailingStringTemplate, StripUntil, StripWhile, StrongMap, StrongMapTransformer, StrongMapTypes, StructuredStringType, Subtract, Success$1 as Success, Suggest, SuggestHexadecimal, SuggestIp6SubnetMask, SuggestIpAddress, Sum$1 as Sum, Surround, SurroundWith, SwissNewsCompanies, SwissNewsUrls, SymbolKind, SyncFunction, Synchronous, TARGET_DNS, TEMPERATURE_METRICS_LOOKUP, TIME_METRICS_LOOKUP, TLD, TOP_LEVEL_DOMAINS, TSV, TT_ATOMICS, TT_Atomic, TT_CONTAINERS, TT_Container, TT_DELIMITER, TT_FUNCTIONS, TT_Function, TT_KIND_VARIANTS, TT_SETS, TT_SINGLETONS, TT_START, TT_STOP, TT_Set, TT_Singleton, TURKISH_NEWS, 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, TW_HUE, TW_HUE_NEUTRAL, TW_HUE_STATIC, TW_HUE_VIBRANT, 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, TW_MODIFIERS_ORDER, TW_MODIFIERS_RELN, TW_MODIFIERS_SIZING, TYPE_COMPARISONS, TYPE_KINDS, TYPE_OF, TYPE_TOKEN_REC_KEY_VARIANTS, TYPE_TOKEN_REC_VARIANTS, TYPE_TOKEN_STRING_SET_VARIANTS, TYPE_TOKEN_UNION_SET_VARIANTS, TYPE_TRANSFORMS, TakeDate, TakeFirst, TakeFunction, TakeFunction__Options, TakeHours, TakeLast, TakeMilliseconds, TakeMinutes, TakeMonth, TakeNestedString, TakeNumeric, TakeNumericOptions, TakeParser, TakeProp, TakeSeconds, TakeStart, TakeStartCallback, TakeStartFn, TakeStartMatches, TakeStartMatchesKind, TakeStartMatches__Callback, TakeStartMatches__Default, TakeStartMatches__Mapper, TakeState, TakeTimezone, TakeUtility, TakeWrapper, TakeYear, TargetUrl, Temperature, TemperatureMetrics, TemperatureUom, TemplateBlock__BARE, TemplateBlocks, TemplateMap, TemplateMap__Basic, TemplateMap__Generics, TemplateParams, TemporalInstanceLike, TemporalLike, TemporalPlainDateTimeLike, TemporalTimeZoneLike, TemporalZonedDateTimeLike, Test, Thenable, ThreeDigitMillisecond, TimeMetric, TimeMetrics, TimeUom, TimeZoneExplicit, TimezoneOffset, ToBoolean, ToCSV, ToChoices, ToCsv, ToFn, ToInteger, ToIntegerOp, ToJson, ToJsonArray, ToJsonObject, ToJsonOptions, ToJsonScalar, ToJsonValue, ToKv, ToKvOptions, ToLiteralOptions, ToNumber, ToNumericArray, ToPhoneFormat, ToString, ToStringArray, ToStringLiteral, ToStringLiteral__Array, ToStringLiteral__Object, ToStringLiteral__Scalar, ToStringLiteral__Union, ToUnion, Token$1 as Token, TokenIsStatic, TokenMapper, TokenName, TokenParamsConstraint, TokenResolver, TokenSyntax, TokenType, TokenizeStringLiteral, Tokenizer, Trim, TrimCharEnd, TrimDictionary, TrimEach, TrimEnd, TrimLeft, TrimRight, TrimStart, Truncate, TruncateAtLen, TruthyReturns, Tuple$1 as Tuple, TupleDefn, TupleMeta, TupleRange, TupleToIntersection, TupleToUnion, TurkishNewsCompanies, TurkishNewsUrls, TwChroma, TwChroma100, TwChroma200, TwChroma300, TwChroma400, TwChroma50, TwChroma500, TwChroma600, TwChroma700, TwChroma800, TwChroma900, TwChroma950, TwChromaLookup, TwColor, TwColorOptionalOpacity, TwColorTarget, TwColorWithLuminosity, TwColorWithLuminosityOpacity, TwHue, TwLumi100, TwLumi200, TwLumi300, TwLumi400, TwLumi50, TwLumi500, TwLumi600, TwLumi700, TwLumi800, TwLumi900, TwLumi950, TwLuminosity, TwLuminosityLookup, TwModifier, TwModifier__Core, TwModifier__Order, TwModifier__Reln, TwModifier__Size, TwModifiers, TwNeutralColor, TwSizeResponsive, TwStaticColor, TwTarget__Color, TwTarget__ColorLuminosity, TwTarget__ColorLuminosityWithOpacity, TwTarget__ColorName, TwTarget__ColorWithOptPrefixes, TwTarget__Color__Light, TwVibrantColor, TwoDigitDate, TwoDigitHour, TwoDigitMinute, TwoDigitMonth, TwoDigitSecond, Type$1 as Type, TypeDefaultValue, TypeDefinition, TypeDefn, TypeDefnValidations, TypeGuard, TypeHasDefaultValue, TypeHasUnderlying, TypeHasValidations, TypeIsRequired, TypeKind, TypeKindContainer, TypeKindContainerNarrow, TypeKindContainerWide, TypeKindFalsy, TypeKindLiteral, TypeKindWide, TypeOf, TypeOfArray, TypeOfExtended, TypeOfTypeGuard, TypeOptions, TypeReplace, TypeRequired, TypeStrength, TypeSubtype, TypeToken, TypeTokenAtomics, TypeTokenContainers, TypeTokenDelimiter, TypeTokenFunctions, TypeTokenKind, TypeTokenLookup, TypeTokenSets, TypeTokenSingletons, TypeTokenStart, TypeTokenStop, TypeToken__Boolean, TypeToken__False, TypeToken__Fn, TypeToken__FnSet, TypeToken__Gen, TypeToken__Never, TypeToken__Null, TypeToken__Number, TypeToken__NumberSet, TypeToken__Rec, TypeToken__String, TypeToken__StringSet, TypeToken__True, TypeToken__Undefined, TypeToken__UnionSet, TypeToken__Unknown, TypeTuple, TypeUnderlying, TypedError, TypedFunction, TypedFunctionWithDictionary, TypedParameter, UK_NEWS, UPPER_ALPHA_CHARS, US_NEWS, US_STATE_LOOKUP, US_STATE_LOOKUP_PROVINCES, US_STATE_LOOKUP_STRICT, UUID, UUID_Urn, UkNewsCompanies, UkNewsUrls, Unbrand, UnbrandValues, UnderlyingType, UnionArrayToTuple, UnionElDefn, UnionFilter, UnionFrom, UnionFromProp, UnionHasArray, UnionMemberEquals, UnionMemberExtends, UnionMutate, UnionMutationOp, UnionToIntersection, UnionToString, UnionToTuple, UnionWithAll, Unique, UniqueKeys, UniqueKeysUnion, UniqueKv, Unset, UntilLast, UntilLastOptions, Uom, UomTypeGuard, UpdateTake, UpperAlphaChar, UpsertKeyValue, Uri, UrlBuilder, UrlMeta, UrlOptions, UrlPath, UrlPathChars, UrlPort, UrlQueryParameters, UrlsFrom, UsNewsCompanies, UsNewsUrls, UsPhoneNumber, UsStateAbbrev, UsStateName, VOLTAGE_METRICS_LOOKUP, VOLUME_METRICS_LOOKUP, ValidKey, Validate, ValidateCharacterSet, ValidateLength, ValidateLengthOptions, ValidateMax, ValidateMin, ValidationFunction, ValueAtDotPath, ValueCallback, ValueOrReturnValue, Values, Variable, VariableChar, VariadicParameterModifiers, VariadicType, Visa, VisaMastercard, Voltage, VoltageMetrics, VoltageUom, Volume, VolumeDefinition, VolumeMapping, VolumeMetrics, VolumeUom, VueComputedRef, VueRef, WALGREENS_DNS, WALMART_DNS, WAYFAIR_DNS, WEEKEND_DAY, WEEKEND_DAY_ABBREV, WEEK_DAY, WEEK_DAY_ABBREV, WHITESPACE_CHARS, WHOLE_FOODS_DNS, WIDE_CONTAINER_TYPE_KINDS, WIDE_TYPE_KINDS, WalgreensUrl, WalmartUrl, WayFairUrl, WeakMapKeyDefn, WeakMapToString, WeakMapValueDefn, When, WhenErr, WhenNever, WhereLeft, Whitespace, WholeFoodsUrl, WideAssignment, WideContainerNames, WideScalarModifiers, WideTokenNames, WideTypeName, Widen, WidenContainer, WidenFn, WidenFunction, WidenLiteral, WidenScalar, WidenTuple, WidenUnion, WidenValues, WithDefault, WithKeys, WithNumericKeys, WithStringKeys, WithTemplateKeys, WithValue, WithoutKeys, WithoutValue, WrapperFn, Xor, YouTubeCreatorUrl, YouTubeEmbedUrl, YouTubeFeedType, YouTubeFeedUrl, YouTubeHistoryUrl, YouTubeHome, YouTubeLikedPlaylistUrl, YouTubeMeta, YouTubePageType, YouTubePlaylistUrl, YouTubeShareUrl, YouTubeSubscriptionsUrl, YouTubeUrl, YouTubeUsersPlaylistUrl, YouTubeVideoUrl, YouTubeVideosInPlaylist, ZARA_DNS, ZIP_TO_STATE, ZaraUrl, Zero, ZeroToMany, ZeroToOne, ZeroToZero, Zip5, ZipCode, ZipPlus4, ZipToState, _TrimDict, abs, add, addFnToProps, addPropsToFn, addToken, afterFirst, and, append, array, asArray, asChars, asDate, asDateTime, asEpochTimestamp, asFourDigitYear, asFromTo, asInputToken, asIsoDate, asIsoDateTime, asNumber, asOutputFunction, asPhoneFormat, asRecord, asString, asTakeState, asTemplate, asTwoDigitMonth, asType, asTypeSubtype, asTypedError, asUnion, asVueRef, between, boolean, brand, capitalize, cardType, choices, compare, contains, createConstant, createConverter, createCssKeyframe, createCssSelector, createErrorCondition, createFifoQueue, createFixedLengthArray, createFnWithProps, createGrammar, createLifoQueue, createNestingConfig, createStaticTakeFunction, createTakeFunction, createTakeStartEndFunction, createTakeWhileFunction, createTemplateRegExp, createToken, createTokenSyntax, cssColor, cssFromDefinition, csv, dateObjectToIso, daysInMonth, decrement, defineCss, defineObj, defineObject, defineObjectWith, defineTuple, doesExtend, dropFirstStackFrame, eachAsString, endsWith, endsWithTypeguard, ensureLeading, ensureSurround, ensureTrailing, entries, equalsSome, err, errCondition, every, filter, filterEmpty, filterUndefined, find, firstChar, fn, fnProps, fourDigitYear, freeze, fromDefineObject, fromDefineTuple, fromInputToken, fromKeyValue, get, getDaysBetween, getEach, getMonthAbbrev, getMonthName, getMonthNumber, getPhoneCountryCode, getSeason, getTailwindModifiers, getToday, getTokenData, getTokenKind, getTomorrow, getTypeSubtype, getUrlBase, getUrlDefaultPort, getUrlDynamics, getUrlPath, getUrlPort, getUrlProtocol, getUrlQueryParams, getUrlSource, getWeekNumber, getYear, getYesterday, getYouTubePageType, handleDoneFn, hasCountryCode, hasDefaultValue, hasHtml, hasIndexOf, hasKeys, hasNonStringKeys, hasOnlyStringKeys, hasOnlyStringValues, hasOnlySymbolKeys, hasOverlappingKeys, hasProtocol, hasProtocolPrefix, hasSymbolKeys, hasUrlPort, hasUrlQueryParameter, hasValidHtml, hasWhiteSpace, idLiteral, idTypeGuard, identity, ifArray, ifArrayPartial, ifBoolean, ifChar, ifContainer, ifDefined, ifEmpty, ifEqual, ifError, ifFalse, ifFunction, ifHasKey, ifLength, ifLowercaseChar, ifNotNull, ifNull, ifNumber, ifObject, ifSameType, ifScalar, ifString, ifTrue, ifUndefined, ifUppercaseChar, increment, indexOf, infer, integer, intersect, intersection, ip6GroupExpansion, isAccelerationMetric, isAccelerationUom, isAfter, isAlpha, isAmazonUrl, isAmericanExpress, isApi, isApiSurface, isAppleUrl, isAreaMetric, isAreaUom, isArray, isAustralianNewsUrl, isBefore, isBelgiumNewsUrl, isBestBuyUrl, isBitbucketUrl, isBoolean, isBooleanArray, isBooleanLike, isCanadianNewsUrl, isChineseNewsUrl, isCodeCommitUrl, isComparisonOperation, isConstant, isContainer, isCostCoUrl, isCountryAbbrev, isCountryCode2, isCountryCode3, isCountryName, isCreditCard, isCssAspectRatio, isCsv, isCurrentMetric, isCurrentUom, isCvsUrl, isDanishNewsUrl, isDate, isDateLike, isDateMeta, isDayJs, isDefineObject, isDefineTuple, isDefined, isDellUrl, isDeltaReturn, isDictionary, isDistanceMetric, isDistanceUom, isDomainName, isDoneFn, isDoubleLeap, isDutchNewsUrl, isEbayUrl, isEmail, isEmpty, isEnergyMetric, isEnergyUom, isEpochInMilliseconds, isEpochInSeconds, isEqual, isErr, isError, isEscapeFunction, isEtsyUrl, isEven, isFalse, isFalsy, isFnWithParams, isFourDigitYear, isFrenchNewsUrl, isFrequencyMetric, isFrequencyUom, isFunction, isGermanNewsUrl, isGithubIssueUrl, isGithubIssuesListUrl, isGithubOrgUrl, isGithubProjectUrl, isGithubProjectsListUrl, isGithubReleaseTagUrl, isGithubReleasesListUrl, isGithubRepoReleaseTagUrl, isGithubRepoReleasesUrl, isGithubRepoUrl, isGithubUrl, isGreaterThan, isGreaterThanOrEqual, isHexadecimal, isHmUrl, isHomeDepotUrl, isHtml, isHtmlComponentTag, isHtmlElement, isIanaTimezone, isIkeaUrl, isInUnion, isIndexable, isIndianNewsUrl, isInlineSvg, isInputToken, isInputToken__String, isInteger, isIp4Address, isIp6Address, isIp6Subnet, isIpAddress, isIso3166Alpha2, isIso3166Alpha3, isIso3166CountryCode, isIso3166CountryName, isIsoDate, isIsoDateTime, isIsoExplicitDate, isIsoExplicitTime, isIsoImplicitDate, isIsoImplicitTime, isIsoMonthDate, isIsoTime, isIsoYear, isIsoYearMonth, isItalianNewsUrl, isJapaneseNewsUrl, isKrogersUrl, isLeapYear, isLength, isLikeRegExp, isLowesUrl, isLuminosityMetric, isLuminosityUom, isLuxonDate, isMacysUrl, isMap, isMassMetric, isMassUom, isMastercard, isMetric, isMetricCategory, isMexicanNewsUrl, isMinimalDigitDate, isMoment, isMonthAbbrev, isMonthName, isNarrowable, isNarrowableArray, isNarrowableDictionary, isNegativeNumber, isNestingEnd, isNestingEndMatch, isNestingKeyValue, isNestingStart, isNestingTuple, isNever, isNewsUrl, isNikeUrl, isNorwegianNewsUrl, isNotEmpty, isNotError, isNotNull, isNotUnset, isNothing, isNull, isNumber, isNumberLike, isNumericArray, isNumericString, isObject, isObjectKey, isObjectKeyRequiringQuotes, isOdd, isOk, isOptionalParamFunction, isParsedDate, isPhoneNumber, isPowerMetric, isPowerUom, isPressureMetric, isPressureUom, isProtocol, isProtocolPrefix, isReadonlyArray, isRef, isRegExp, isRepoSource, isRepoUrl, isResistanceMetric, isResistanceUom, isRetailUrl, isSameDay, isSameMonth, isSameMonthYear, isSameTypeOf, isSameYear, isScalar, isSemanticVersion, isSet, isSetContainer, isShape, isShapeCallback, isSimpleContainerToken, isSimpleContainerTokenTuple, isSimpleScalarToken, isSimpleScalarTokenTuple, isSimpleToken, isSimpleTokenTuple, isSocialMediaProfileUrl, isSocialMediaUrl, isSouthKoreanNewsUrl, isSpanishNewsUrl, isSpecificConstant, isSpeedMetric, isSpeedUom, isStaticTemplate, isString, isStringArray, isStringLiteral, isStringOrNumericArray, isSwissNewsUrl, isSymbol, isTailwindColor, isTailwindColorClass, isTailwindColorName, isTailwindColorTarget, isTailwindColorWithLuminosity, isTailwindColorWithLuminosityAndOpacity, isTailwindModifier, isTakeState, isTargetUrl, isTemperatureMetric, isTemperatureUom, isTemporalDate, isThenable, isThisMonth, isThisWeek, isThisYear, isThreeDigitMillisecond, isTimeMetric, isTimeUom, isTimezoneOffset, isToday, isTomorrow, isTrimable, isTrue, isTruthy, isTuple, isTurkishNewsUrl, isTwoDigitDate, isTwoDigitHour, isTwoDigitMinute, isTwoDigitMonth, isTwoDigitSecond, isTypeOf, isTypeSubtype, isTypeTuple, isTypedError, isUkNewsUrl, isUndefined, isUnset, isUom, isUomCategory, isUri, isUrl, isUrlPath, isUrlSource, isUsNewsUrl, isUsPhoneNumber, isUsStateAbbreviation, isUsStateName, isValidAtomicTag, isValidBlockTag, isValidComparisonParams, isValidHtml, isValidHtmlTag, isVariable, isVisa, isVisaMastercard, isVoltageMetric, isVoltageUom, isVolumeMetric, isVolumeUom, isWalgreensUrl, isWalmartUrl, isWayfairUrl, isWeakMap, isWholeFoodsUrl, isYesterday, isYouTubeCreatorUrl, isYouTubeFeedHistoryUrl, isYouTubeFeedUrl, isYouTubePlaylistUrl, isYouTubePlaylistsUrl, isYouTubeShareUrl, isYouTubeSubscriptionsUrl, isYouTubeTrendingUrl, isYouTubeUrl, isYouTubeVideoUrl, isYouTubeVideosInPlaylist, isZaraUrl, isZipCode, isZipCode5, isZipPlus4, joinWith, keysOf, keysWithError, kindLiteral, last, lastChar, lessThan, lessThanOrEqual, literal, logicalReturns, lookupCountryAlpha2, lookupCountryAlpha3, lookupCountryCode, lookupCountryName, lowercase, map, maybePhoneNumber, mergeObjects, mergeScalars, mergeTuples, mutable, nameLiteral, narrow, nbsp, nestedSplit, nesting, not, nullType, objectValues, omitKeys, optional, optionalOrNull, or, orNull, parseDate, parseDateObject, parseIsoDate, parseNumericDate, pathJoin, pluralize, pop, record, regexToken, removePhoneCountryCode, removeTailwindModifiers, removeUrlProtocol, replace, replaceAll, replaceAllFromTo, result$1 as result, retainAfter, retainAfterInclusive, retainChars, retainKeys, retainUntil, retainUntilInclusive, retainUntil__Nested, retainWhile, reverse, reverseLookup, rightWhitespace, setupSafeStringEncoding, shape, sharedKeys, shift, simpleContainerToken, simpleContainerType, simpleScalarToken, simpleScalarType, simpleToken, simpleType, slice, sortByKey, split, startsWith, startsWithTypeguard, stripAfter, stripAfterLast, stripBefore, stripChars, stripLeading, stripParenthesis, stripSurround, stripTrailing, stripUntil, stripWhile, surround, take, takeNumericCharacters, takeStart, takeStringToken, threeDigitMillisecond, toAllCaps, toCamelCase, toInteger, toIsoDateString, toJSON, toJson, toKebabCase, toKeyValue, toLowercase, toNumber, toNumericArray, toPascalCase, toSnakeCase, toString, toStringLiteral, toStringLiteral__Object, toStringLiteral__Tuple, toStringToken, trim, trimEnd, trimStart, truncate, tuple, twColor, twoDigitHour, twoDigitMinute, twoDigitSecond, typedError, unbrand, uncapitalize, undefinedType, unionize, unique, uniqueKeys, unknown, unset, urlMeta, usingLookup, validHtmlAttributes, valuesOf, weakMap, widen, withDefaults, withKeys, withValue, withoutKeys, withoutValue, youtubeEmbed, youtubeMeta };
|
|
47973
|
+
export { ACCELERATION_METRICS_LOOKUP, ALPHA_CHARS, AMAZON_BOOKS, AMAZON_DNS, APPLE_DNS, AREA_METRICS_LOOKUP, AUSTRALIAN_NEWS, Abs, AbsMaybe, Acceleration, AccelerationMetrics, AccelerationUom, Add, AddIfUnique, AddKeyValue, AddPositive, AddUrlPathSegment, AfterFirst, AfterFirstChar, AfterLast, AllCaps, AllExtend, AllLengthOf, AllLiteral, AllNumericLiterals, AllOptionalElements, AllStringLiterals, AlphaChar, AlphanumericChar, AmazonUrl, AmericanExpress, And, AnyArray, AnyFunction, AnyMap, AnyObject, AnyQueryParams, AnySet, AnyWeakMap, Api, ApiCallback, ApiConfig, ApiEscape, ApiHandler, ApiOptions, ApiReturn, ApiState, ApiStateInitializer, ApiSurface, Append, AppendRight, AppleUrl, ApplyTemplate, AreIncompatible, AreSameLength, AreSameType, Area, AreaMetrics, AreaUom, ArgUnion, AriaDocStructureRoles, AriaLandmarkRoles, AriaLiveRegionRoles, AriaRole, AriaWidgetRoles, AriaWindowRoles, ArrayElementType, ArrayTo, ArrayToString, ArrayTypeDefn, As, AsApi, AsArray, AsBoolean, AsChoice, AsClassSelector, AsContainer, AsDateMeta, AsDefined, AsDictionary, AsDoneFn, AsEscapeFunction, AsFinalizedConfig, AsFnMeta, AsFourDigitYear, AsFromTo, AsFunction, AsHtmlComponentTag, AsHtmlTag, AsIndexOf, AsInputToken, AsLeft, AsLeftRight, AsLiteralTemplate, AsNarrowingFn, AsNegativeNumber, AsNonNull, AsNumber, AsNumberWhenPossible, AsNumericArray, AsObject, AsObjectKey, AsObjectKeys, AsOptionalParamFn, AsOutputToken, AsPropertyKey, AsRecord, AsRef, AsRelativeDate, AsRight, AsSimpleType, AsSomething, AsStaticFn, AsStaticTemplate, AsString, AsStringUnion, AsTakeState, AsTemplateType, AsTemplateTypes, AsTuple, AsTwoDigitMonth, AsTypeSubtype, AsUnion, AsUnionOptions, AsUnionToken, AsVueComputedRef, AssertAssertionError, AssertContains, AssertEqual, AssertEquals, AssertError, AssertExtends, AssertFalse, AssertNotEqual, AssertSameValues, AssertTrue, AssertValidation, AssertionError, AssertionMapper, AssertionOp, AsyncFunction, Asynchronous, AustralianNewsCompanies, AustralianNewsUrls, AvailableConverters, Awaited$1 as Awaited, BCP47, BELGIUM_NEWS, BEST_BUY_DNS, BLOOD_MARKERS_LOOKUP, BRACKET_AND_QUOTE_NESTING, BRACKET_NESTING, BRANDED, BackTick, BareCssSelector, BaseRuntimeType, BaseType, BaseTypeToken, BeforeLast, BelgianNewsCompanies, BelgianNewsUrls, BespokeLiteral, BespokeUnion, BestBuyUrl, BetweenScope, BooleanLike, BooleanSort, BooleanSortOptions, Box, Bracket, BracketAndQuoteNesting, BracketNesting, Brand, BrandSymbol, Break$1 as Break, BuildDefinition, CANADIAN_NEWS, CHEWY_DNS, CHINESE_NEWS, COMMA, COMMON_OBJ_PROPS, COMPARISON_OPERATIONS, CONSONANTS, CONTINENTS, COSTCO_DNS, CSS_NAMED_COLORS, CSV, CURRENT_METRICS_LOOKUP, CVS_DNS, Callback$1 as Callback, CamelCase, CamelKeys, CanadianNewsCompanies, CanadianNewsUrls, CapFirstAlpha, CapitalizeEachUnionMember, CapitalizeWords, Cardinality$1 as Cardinality, Cardinality0, Cardinality1, CardinalityExplicit, CardinalityFilter0, CardinalityFilter1, CardinalityIn, CardinalityInput, CardinalityNode, CardinalityOut, CargoDependency, CargoToml, CharCount, Chars, ChewyUrl, ChineseNewsCompanies, ChineseNewsUrls, Choice, ChoiceApi, ChoiceApiConfig, ChoiceApiOptions, ChoiceBuilder, ChoiceCallback, ChoiceValue, ClosingBracket, ClosingMark, ClosingMarkPlus, CodePointOf, ColorFnOptOpacity, ColorFnValue, ColorParam, CombinedKeys, CommonHtmlElement, CommonObjProps, Comparator, Compare, CompareNumbers, ComparisonAccept, ComparisonDesc, ComparisonFn, ComparisonLookup, ComparisonMode, ComparisonOpConfig, ComparisonOperation, ComparisonParamConvert, ComparisonParamConvert__List, ComparisonParamConvert__Unit, Concat, ConfigDefinition, ConfiguredMap, Consonant, Consonants, Constant, ConstrainObject, ConstrainedObjectCallback, ConstrainedObjectIdentity, Constructor, Container, ContainerBlockKey, ContainerKeyGuarantee, Contains, ContainsAll, ContainsSome, Continent, Conversion, ConvertTypeOf, ConvertWideTokenNames, ConverterCoverage, ConverterDefn, CostCoUrl, CostcoUrl, Count$1 as Count, CountryPhoneNumber, Cr, CrThenIndent, CreateChoice, CreateDictHash, CreateDictShape, CreateKV, CreateLookup, CreditCard, CssAbsolutionPositioningProperties, CssAlignContent, CssAlignItems, CssAlignProperties, CssAlignSelf, CssAnimation, CssAnimationComposition, CssAnimationDelay, CssAnimationDirection, CssAnimationDuration, CssAnimationFillMode, CssAnimationIterationCount, CssAnimationPlayState, CssAnimationProperties, CssAnimationTimingFunction, CssAppearance, CssAspectRatio, CssBackdropFilter, CssBackgroundProperties, CssBorderCollapse, CssBorderImageRepeat, CssBorderImageSource, CssBorderInlineSizing, CssBorderProperties, CssBorderStyle, CssBorderWidth, CssBoxAlign, CssBoxDecorationBreak, CssBoxProperties, CssBoxShadow, CssBoxSizing, CssBreak, CssBreakInside, CssBreakProperties, CssCalc, CssClamp, CssClassSelector, CssColor, CssColorFn, CssColorLight, CssColorMix, CssColorMixLight, CssColorModel, CssColorSpace, CssColorSpacePrimary, CssContent, CssCursor, CssDefinition, CssDisplay, CssDisplayStatePseudoClasses, CssFlex, CssFlexBasis, CssFlexDirection, CssFlexFlow, CssFlexGrow, CssFlexShrink, CssFloat, CssFontFamily, CssFontFeatureSetting, CssFontKerning, CssFontLanguageOverride, CssFontPalette, CssFontProperties, CssFontStyle, CssFontSynthesis, CssFontWeight, CssFontWidth, CssFromDefnOption, CssFunctionalPseudoClass, CssGap, CssGlobal, CssHangingPunctuation, CssHexColor, CssHsb, CssHsl, CssIdSelector, CssImageOrientation, CssImageRendering, CssImageResolution, CssInputPseudoClasses, CssJustifyContent, CssJustifyItems, CssJustifyProperties, CssJustifySelf, CssKeyframeCallback, CssKeyframeTimestamp, CssKeyframeTimestampSuggest, CssLetterSpacing, CssLinguisticPseudoClasses, CssListStyle, CssLocationPseudoClasses, CssMargin, CssMarginBlock, CssMarginBlockEnd, CssMarginBlockStart, CssMarginBottom, CssMarginInline, CssMarginInlineEnd, CssMarginInlineStart, CssMarginLeft, CssMarginProperties, CssMarginRight, CssMarginTop, CssMixBlendMode, CssNamedColors, CssNamedSizes, CssObjectFit, CssObjectPosition, CssOffsetDistance, CssOffsetPath, CssOffsetPosition, CssOffsetProperties, CssOkLch, CssOpacity, CssOutline, CssOutlineColor, CssOutlineOffset, CssOutlineProperties, CssOutlineStyle, CssOutlineWidth, CssOverflowAnchor, CssOverflowBlock, CssOverflowClipMargin, CssOverflowInline, CssOverflowProperties, CssOverflowX, CssOverflowY, CssPadding, CssPaddingBlock, CssPaddingBlockEnd, CssPaddingBlockStart, CssPaddingBottom, CssPaddingInline, CssPaddingInlineEnd, CssPaddingInlineStart, CssPaddingLeft, CssPaddingProperties, CssPaddingRight, CssPaddingTop, CssPerspectiveOrigin, CssPlaceContent, CssPlaceItems, CssPlaceProperties, CssPlaceSelf, CssPointerEvent, CssPosition, CssProperty, CssPseudoClass, CssPseudoClassDefn, CssResourceStatePseudoClasses, CssRgb, CssRgba, CssRotation, CssRound, CssSelector, CssSelectorOptions, CssSizing, CssSizingFunction, CssSizingLight, CssStroke, CssStrokeDasharray, CssStrokeProperties, CssTagSelector, CssTextAlign, CssTextDecorationLine, CssTextDecorationStyle, CssTextIndent, CssTextJustify, CssTextOrientation, CssTextOverflow, CssTextPosition, CssTextProperties, CssTextRendering, CssTextTransform, CssTextWrap, CssTextWrapMode, CssTextWrapStyle, CssTimePseudoClasses, CssTiming, CssTransform, CssTransformBox, CssTransformOrigin, CssTransformProperties, CssTransformStyle, CssTranslate, CssTranslateFn, CssTreePseudoClasses, CssUserActionPseudoClasses, CssVar, CssVarWithFallback, CssWhiteSpace, CssWhiteSpaceCollapse, CssWordBreak, CssWritingMode, Csv, CsvFormat, CsvToJsonTuple, CsvToStrUnion, CsvToTuple, CsvToTupleStr, CsvToUnion, Current, CurrentMetrics, CurrentUom, CvsUrl, DANISH_NEWS, DATE_TYPE, DAYS_OF_WEEK__Mon, DAYS_OF_WEEK__Sun, DEFAULT_MANY_TO_ONE_MAPPING, DEFAULT_ONE_TO_MANY_MAPPING, DEFAULT_ONE_TO_ONE_MAPPING, DELL_DNS, DISTANCE_METRICS_LOOKUP, DOUBLE_LEAP_M1, DOUBLE_LEAP_M2, DOUBLE_LEAP_M3, DOUBLE_LEAP_M4, DOUBLE_LEAP_M5, DOUBLE_LEAP_MODERN, DUTCH_NEWS, DanishNewsCompanies, DanishNewsUrls, DashToSnake, DashUppercase, DateLike, DateMeta, DatePlus, DateSeparator, DateSource, DateType, DayJsLike, DaysInMonth, DecomposeMapConfig, Decrement, DefaultManyToOneMapping, DefaultNesting, DefaultOneToManyMapping, DefaultOneToOneMapping, DefaultOptions, DefaultTemplateBlocks, DefineModifiers, DefineObject, DefineObjectApi, DefineObjectWith, DefineStatelessApi, DefineTokenDetail, DefineTuple, Defined, DellUrl, Delta$1 as Delta, DeltaLight, DeployConfig, DialCountryCode, Dict$1 as Dict, DictChangeValue, Dictionary, DictionaryTypeDefn, Digit, DigitNonZero, Digital, DigitalLiteral, Digitize, DinersClub, Discover, Distance, DistanceMetrics, DistanceUom, DistinguishEmpty, Divide, DnsName, DockerCompose, DockerDependsOn, DockerService, DoesExtend, DoesExtendTypeguard, DoesNotExtend, DomainName, DoneFnTuple, DotPathFor, DoubleQuote, DropChars, DropLeading, DropTrailing, DropVariadic, DropVariadicHead, DropVariadicTail, DutchNewsCompanies, DutchNewsUrls, DynamicSegment, DynamicToken, DynamicTokenApi, EBAY_DNS, EDITORS, ENERGY_METRICS_LOOKUP, ETSY_DNS, Each, EachAsString, EachAsStringLiteralTemplate, EachOperation, EbayUrl, ElementOf, Email, Empty, EmptyObject, EmptyString, EncodingDefinition, EndsWith, EndsWithNumber, Energy, EnergyMetrics, EnergyUom, EnsureKeys, EnsureLeading, EnsureLeadingEvery, EnsureSurround, EnsureTrailing, EpochInMs, EpochInSeconds, Equals, EqualsSome__Partial, Err, ErrContext, ErrMsg, ErrType, EscapeFunction, EscapeRegex, EscapedSafeEncodingConversion, EsotericHtmlElement, EtsyUrl, Even, EvenNumber, Every, EveryLength, ExcludeIndex, Exif, ExifAttributionInfo, ExifCameraInfo, ExifCompression, ExifContrast, ExifDateTimeInfo, ExifEmbedPolicy, ExifExtraneous, ExifFlashValues, ExifGainControl, ExifGps, ExifLightSource, ExifPhotoContext, ExifPreviewColorSpace, ExifSaturation, ExifSceneCaptureType, ExifSharpness, ExifSubjectDistance, Expand, ExpandDictionary, ExpandRecursively, ExpandTuple, ExpandUnion, Expect, ExplicitFunction, ExplicitlyEmptyObject, Extends, ExtendsAll, ExtendsEvery, ExtendsNone, ExtendsSome, ExtractCaptureGroups, ExtractOptionalElements, ExtractOptionalKeys, ExtractRequiredElements, FALSY_TYPE_KINDS, FALSY_VALUES, FRENCH_NEWS, FREQUENCY_METRICS_LOOKUP, Fail$1 as Fail, FailFast, FailFastOptions, Fallback, FalsyValue, FifoQueue, FillStringHole, Filter, FilterByNestingLevel, FilterFn, FinalizedMapConfig, Find, FindFunction, FindMaxLength, First$1 as First, FirstChar, FirstDefined, FirstKey, FirstOfEach, FirstSet, FirstString, FirstValue, FixedLengthArray, Flatten, FlattenUnion, FluentApi, FluentFn, FluentState, FnAllowingProps, FnArgsDefn, FnDefn, FnFrom, FnKeyValue, FnMeta, FnMetaShape, FnPropertiesDefn, FnReturn, FnReturnTypeDefn, FnWithDescription, FnWithProps, FourDigitYear, FrenchNewsCompanies, FrenchNewsUrls, Frequency, FrequencyMetrics, FrequencyUom, FromCsv, FromDefineObject, FromDefineTuple, FromDefn, FromDynamicSegment, FromInputToken, FromInputToken__Object, FromInputToken__String, FromInputToken__Tuple, FromKv, FromLiteralTemplate, FromLiteralTokens, FromMaybeRef, FromNamedDynamicSegment, FromNamedNestingConfig, FromNesting, FromRecordKeyDefn, FromShapeCallback, FromSimpleRecordKey, FromSimpleToken, FromTo, FromTypeDefn, FromWideTokens, FullWidthQuotation, FullyQualifiedUrl, GERMAN_NEWS, GITHUB_INSIGHT_CATEGORY_LOOKUP, GenericParam, GermanNewsCompanies, GermanNewsUrls, Get, GetBrand, GetComparator, GetComparisonParams, GetDefaultPort, GetEach, GetEachOptions, GetEscapeFunction, GetFixedKeys, GetIndexKeys, GetInference, GetInferenceProps, GetInputToken, GetMonthAbbrev, GetMonthName, GetMonthNumber, GetNestingEnd, GetNonVariadicLength, GetOpConfig, GetOptionalElementCount, GetOptions, GetPhoneCountryCode, GetPhoneNumberType, GetQueryParameterDynamics, GetRequiredElementCount, GetSeason, GetTemplateBlocks, GetTemplateParams, GetTokenNames, GetTypeOf, GetUrlDynamics, GetUrlPath, GetUrlPathDynamics, GetUrlPort, GetUrlProtocol, GetUrlProtocolPrefix, GetUrlQueryParams, GetUrlSource, GetYear, GetYouTubePageType, GitRef, GithubActionsUrl, GithubInsightPageType, GithubInsightUrl, GithubOrgUrl, GithubRepoBranchesUrl, GithubRepoDiscussionUrl, GithubRepoDiscussionsUrl, GithubRepoIssueUrl, GithubRepoIssuesListUrl, GithubRepoProjectUrl, GithubRepoProjectsUrl, GithubRepoPullRequestUrl, GithubRepoPullRequestsUrl, GithubRepoReleaseTagUrl, GithubRepoReleasesUrl, GithubRepoTagsUrl, GithubRepoUrl, GithubUrl, Grammar, GrammarEncoder, GrammarTypeDefinition, HASH_TABLE_ALPHA_LOWER, HASH_TABLE_ALPHA_UPPER, HASH_TABLE_CHAR, HASH_TABLE_DIGIT, HASH_TABLE_OTHER, HASH_TABLE_SPECIAL, HASH_TABLE_WIDE, HEMISPHERE, HM_DNS, HOME_DEPOT_DNS, HTML_ATOMIC_TAGS, HTML_BLOCK_TAGS, HandMUrl, Handle, HandleDoneFn, HasAny, HasArray, HasCharacters, HasErrors, HasEscapeFunction, HasEvery, HasFalse, HasFunctionKeys, HasIndex, HasIndexKeys, HasIndexSignature, HasIpAddress, HasModifier, HasNetworkProtocolReference, HasNever, HasNoParameters, HasNonTemplateLiteral, HasOneParameter, HasOptionalElements, HasOptionalElements__Tuple, HasOtherCharacters, HasParameters, HasPhoneCountryCode, HasProp, HasQueryParameter, HasRequiredElements, HasRequiredProps, HasSameKeys, HasSameValues, HasTemplateLiteral, HasTrue, HasTypedFunctionKeys, HasUnionType, HasUppercase, HasUrlPath, HasUrlSource, HasVariadicHead, HasVariadicInterior, HasVariadicParameters, HasVariadicTail, HasWideBoolean, HasWideValues, HaveSameNumericSign, Healthcheck, Hemisphere, HexColor, Hexadecimal, HexadecimalChar, HomeDepotUrl, HtmlBodyElement, HtmlElement, HtmlFrameworkElement, HtmlFunctionalElement, HtmlHeaderElement, HtmlInputElement, HtmlListElement, HtmlMediaElement, HtmlStructuralElement, HtmlSymantecElement, HtmlTableElement, HtmlTag, HtmlTagAtomic, HtmlTagClose, HtmlTagOpen, Html__AtomicTag, Html__BlockTag, HttpHeader, HttpHeaders, HttpHeadingKeys, HttpVerb, HttpVerbsWithBody, HttpVerbsWithoutBody, IANA_TIMEZONES, IANA_TIMEZONES__AFRICA, IANA_TIMEZONES__AMERICA, IANA_TIMEZONES__ANTARCTICA, IANA_TIMEZONES__ASIA, IANA_TIMEZONES__ATLANTIC, IANA_TIMEZONES__AUSTRALIA, IANA_TIMEZONES__EUROPE, IANA_TIMEZONES__INDIAN, IANA_TIMEZONES__OTHER, IANA_TIMEZONES__PACIFIC, IKEA_DNS, IMAGE_FORMAT_LOOKUP, INDIAN_NEWS, INTERPOLATION_BLOCKS, IP6Multicast, IP6Unicast, IPv4, IPv6, ISO3166_1, ISO_DATE_30, ISO_DATE_31, ITALIAN_NEWS, IT_ATOMIC_TOKENS, IT_AtomicToken, IT_BooleanLiteralToken, IT_CONTAINER_TOKENS, IT_Combinators, IT_Failure, IT_Generics, IT_KvType, IT_LITERAL_TOKENS, IT_NumericLiteralToken, IT_Parameter, IT_ParameterResults, IT_StringLiteralToken, IT_TakeArray, IT_TakeAtomic, IT_TakeFunction, IT_TakeGenerator, IT_TakeGroup, IT_TakeIntersection, IT_TakeKind, IT_TakeKvObjects, IT_TakeLiteralArray, IT_TakeNumericLiteral, IT_TakeObjectLiteral, IT_TakeOutcome, IT_TakeParameters, IT_TakePromise, IT_TakeSet, IT_TakeStringLiteral, IT_TakeTokenGeneric, IT_TakeTokenGenerics, IT_TakeUnion, IT_Token, IT_Token_Array, IT_Token_Atomic, IT_Token_Base, IT_Token_Function, IT_Token_Generator, IT_Token_Group, IT_Token_Intersection, IT_Token_Kv, IT_Token_Literal, IT_Token_Literal_Array, IT_Token_Object_Literal, IT_Token_Promise, IT_Token_Set, IT_Token_Union, IT_TupleToOutputToken, IanaAfrica, IanaAmerica, IanaAntarctica, IanaAsia, IanaEurope, IanaPacific, IanaZone, IanaZoneArea, IdentityFn, IdentityFunction, If, IfAllExtend, IfAllLiteral, IfEqual, IfEquals, IfLeft, IfLength, IfLiteralKind, IfNever, IfUnset, IfUnsetOrUndefined, IkeaUrl, ImgFormat, ImgFormatWeb, Immutable, InBetween, InBetweenOptions, Increment, Indent, Indent2, Indent4, IndentSpaces, IndentTab, IndexOf, Indexable, IndexableObject, IndianNewsCompanies, IndianNewsUrls, InlineSvg, InputToken, InputTokenSuggestions, InputToken__SimpleTokens, Integer, IntegerBrand, InternationalPhoneNumber, IntersectingKeys, Intersection, IntersectionToTuple, IntoTemplate, Inverse, InvertNumericSign, Ip4Address, Ip4AddressLike, Ip4Netmask16, Ip4Netmask24, Ip4Netmask32, Ip4Netmask8, Ip4NetmaskSuggestion, Ip4Octet, Ip4Subnet, Ip4SubnetLike, Ip6Address, Ip6AddressFull, Ip6AddressLike, Ip6Group, Ip6GroupExpansion, Ip6Loopback, Ip6Subnet, Ip6SubnetLike, IsAfter, IsAllCaps, IsAllLowercase, IsAlphanumeric, IsAmericanExpress, IsAny, IsAnyEqual, IsArray, IsAtomicTag, IsBalanced, IsBefore, IsBetweenExclusively, IsBetweenInclusively, IsBoolean, IsBooleanLiteral, IsBranded, IsCapitalized, IsComputedRef, IsContainer, IsCreditCard, IsCssHexadecimal, IsCsv, IsDateLike, IsDayJs, IsDefined, IsDictionary, IsDictionaryDefinition, IsDomainName, IsDotPath, IsDoubleLeap, IsEmpty, IsEmptyArray, IsEmptyContainer, IsEmptyObject, IsEmptyString, IsEpochInMilliseconds, IsEpochInSeconds, IsEqual, IsErrMsg, IsError, IsEscapeFunction, IsFalse, IsFalsy, IsFloat, IsFnWithDictionary, IsFourDigitYear, IsFunction, IsGreaterThan, IsGreaterThanOrEqual, IsHexadecimal, IsHtmlClosingTag, IsInputToken, IsInputTokenSuccess, IsInteger, IsIp4Address, IsIp4Octet, IsIp6Address, IsIp6HexGroup, IsIpAddress, IsIsoDate, IsIsoDateTime, IsIsoFullDate, IsIsoFullDateTime, IsIsoMonthDate, IsIsoTime, IsIsoYear, IsIsoYearMonth, IsIterable, IsJsDate, IsLeapYear, IsLength, IsLessThan, IsLessThanOrEqual, IsLiteral, IsLiteralContainer, IsLiteralFn, IsLiteralKind, IsLiteralLike, IsLiteralLikeArray, IsLiteralLikeObject, IsLiteralLikeTuple, IsLiteralNumber, IsLiteralObject, IsLiteralScalar, IsLiteralString, IsLiteralTuple, IsLiteralUnion, IsLowerAlpha, IsLuxonDateTime, IsMixedUnion, IsMoment, IsNarrower, IsNarrowingFn, IsNegativeNumber, IsNestingConfig, IsNestingEnd, IsNestingKeyValue, IsNestingMatchEnd, IsNestingStart, IsNestingTuple, IsNever, IsNonEmptyContainer, IsNonEmptyObject, IsNonLiteralUnion, IsNotEqual, IsNothing, IsNull, IsNumber, IsNumberLike, IsNumericLiteral, IsObject, IsObjectKeyRequiringQuotes, IsOk, IsOptional, IsPhoneNumber, IsPositiveNumber, IsReadonlyArray, IsReadonlyObject, IsRequired, IsSameContainerType, IsSameDay, IsSameMonth, IsSameMonthYear, IsSameYear, IsScalar, IsSet, IsSingleChar, IsSingleSided, IsSingularNoun, IsStaticFn, IsStaticTemplate, IsStrictEmptyObject, IsStrictPromise, IsString, IsStringLiteral, IsSubstring, IsSymbol, IsTemplateLiteral, IsThenable, IsTrue, IsTruthy, IsTuple, IsTwoDigitDate, IsTwoDigitMonth, IsUndefined, IsUnion, IsUnionArray, IsUniqueSymbol, IsUnitPrimitive, IsUnknown, IsUnset, IsUrl, IsValidDotPath, IsValidIndex, IsVariable, IsVariadicArray, IsVisaMastercard, IsVueRef, IsWhitespace, IsWideArray, IsWideBoolean, IsWideContainer, IsWideNumber, IsWideObject, IsWideScalar, IsWideString, IsWideSymbol, IsWideType, IsWideUnion, IsYouTubePlaylist, IsYouTubeUrl, IsYouTubeVideoUrl, Iso3166Alpha2Lookup, Iso3166Alpha3Lookup, Iso3166CodeLookup, Iso3166CountryLookup, Iso3166_1_Alpha2, Iso3166_1_Alpha3, Iso3166_1_CountryCode, Iso3166_1_CountryName, Iso3166_1_Lookup, Iso3166_1_Token, IsoDate$1 as IsoDate, IsoDate30, IsoDate31, IsoDateTime, IsoFullDate, IsoFullDateTimeLike, IsoModernDoubleLeap, IsoMonthDate, IsoTime, IsoTimeLike, IsoYear, IsoYearMonth, IsolateErrors, IsolatedResults, ItalianNewsCompanies, ItalianNewsUrls, JAPANESE_NEWS, JapaneseNewsCompanies, JapaneseNewsUrls, Jcb, Join, Joiner, JsDateLike, JsonRxEncodingSpecifier, JsonRxMessageEncoding, JsonRxPayloadEncoding, JsonRxProtocol, JustFunction, KROGER_DNS, KebabCase, KebabKeys, KeyOf, KeyValue, KeyframeApi, Keys$1 as Keys, KeysEqualValue, KeysNotEqualValue, KeysOverlap, KeysUnion, KeysWithError, KeysWithValue, KeysWithoutValue, KlassMeta, KrogerUrl, KvFn, KvFnDefn, LITERAL_TYPE_KINDS, LOWER_ALPHA_CHARS, LOWES_DNS, LUMINOSITY_METRICS_LOOKUP, Last$1 as Last, LastChar, LastOfEach, LeadingNonAlpha, Left$1 as Left, LeftContains, LeftDoubleMark, LeftEquals, LeftExtends, LeftHeavyDoubleTurned, LeftHeavySingleTurned, LeftIncludes, LeftLowDoublePrime, LeftReversedDoublePrime, LeftRight, LeftRight__Operations, LeftSingleMark, LeftWhitespace, Length, LessThan, LessThanOrEqual, LexerDelta, LexerState, LifoQueue, LikeRegExp, List, LiteralFnModifiers, LiteralLikeModifiers, LiteralModifiers, LiteralNumberModifiers, LiteralObjectModifiers, LiteralStringModifiers, LocalPhoneNumber, LoggingOptions, Logic, LogicFunction, LogicHandler, LogicOptions, LogicalCombinator, LogicalReturns, Longest, LowerAllCaps, LowerAlphaChar, LowesUrl, Luminosity, LuminosityMetrics, LuminosityUom, LuxonLikeDateTime, LuxonStaticDateTime, MACYS_DNS, MARKED, MASS_METRICS_LOOKUP, MEXICAN_NEWS, MIME_TYPES, MONTH_ABBR, MONTH_ABBREV_LOOKUP, MONTH_NAME, MONTH_NAME_LOOKUP, MONTH_TO_SEASON_LOOKUP, MacysUrl, Maestro, MakeKeysOptional, MakeKeysRequired, MakeOptional, MakePropsMutable, MakeRequired, ManyToMany, ManyToOne, ManyToZero, MapCard, MapCardinality, MapCardinalityFrom, MapCardinalityIllustrated, MapConfig, MapCoverage, MapFn, MapFnInput, MapFnOutput, MapIR, MapInput, MapInputFrom, MapKeyDefn, MapKeys, MapKeysOptions, MapOR, MapOutput, MapOutputFrom, MapTo, MapToString, MapValueDefn, MapperApi, MapperOld, Marked, Mass, MassMetrics, MassUom, Mastercard, Max$1 as Max, MaxLength, MaxSafeInteger, MaybeRef, Merge, MergeKVs, MergeObjects, MergeScalars, MergeTuples, Metric, MetricCategory, MetricTypeGuard, MexicanNewsCompanies, MexicanNewsUrls, MimeTypes, Min$1 as Min, MinLength, MinLengthArray, MinimalDigitDate, MinimalDigitDate__Suffixed, MixObjects, Mod, ModernDoubleLeap, MomentLike, MonthAbbrev, MonthDateDigit, MonthInSeason, MonthName, MonthNumber, MonthNumeric, MultiChoiceCallback, MultipleChoice, Multiply, Mutable, MutableProps, MutablePropsExclusive, NARROW_CONTAINER_TYPE_KINDS, NBSP, NETWORK_PROTOCOL, NETWORK_PROTOCOL_INSECURE, NETWORK_PROTOCOL_LOOKUP, NETWORK_PROTOCOL_SECURE, NIKE_DNS, NON_BREAKING_SPACE, NON_ZERO_NUMERIC_CHAR, NORWEGIAN_NEWS, NOT_APPLICABLE, NOT_DEFINED, NO_DEFAULT_VALUE, NO_MATCH, NUMERIC_CHAR, NUMERIC_DIGIT, NamedColor, NamedColorMinimal, NamedColor_Blue, NamedColor_Brown, NamedColor_Cyan, NamedColor_Gray, NamedColor_Green, NamedColor_Orange, NamedColor_Pink, NamedColor_Purple, NamedColor_Red, NamedColor_White, NamedColor_Yellow, NamedDynamicSegment, NamingConvention, Narrow, NarrowContainer, NarrowDictProps, NarrowObject, Narrowable, NarrowableDefined, NarrowableScalar, NarrowingFn, NarrowlyContains, NegDelta, Negative, Nest, NestedSplit, NestedSplitPolicy, NestedString, Nesting, NestingApi, NestingConfig__Named, NestingKeyValue, NestingTuple, NetworkConfig, NetworkDefinition, NetworkProtocol, NetworkProtocolPrefix, Never, NewsUrls, NextDigit, NikeUrl, NoDefaultValue, NoMatch, NodeCallback, NonAlphaChar, NonArray, NonBreakingSpace, NonNumericKeys, NonStringKeys, NonZeroNumericChar, None, NorwegianNewsCompanies, NorwegianNewsUrls, Not, NotApplicable, NotDefined, NotEqual, NotFilter, NotLength, NotNull, Nothing, NpmVersion, NumberLike, NumericChar, NumericChar__NonZero, NumericChar__OneToFive, NumericChar__OneToFour, NumericChar__OneToThree, NumericChar__OneToTwo, NumericChar__ZeroToFive, NumericChar__ZeroToFour, NumericChar__ZeroToOne, NumericChar__ZeroToThree, NumericChar__ZeroToTwo, NumericKeys, NumericRange, NumericSequence, NumericSign, NumericSort, NumericSortOptions, OPTION, ObjKeyDefn, ObjectApiCallback, ObjectKey, ObjectKeys, ObjectMap, ObjectMapConversion, ObjectMapper, ObjectMapperCallback, ObjectToApi, ObjectToCssString, ObjectToJsString, ObjectToJsonString, ObjectToKeyframeString, ObjectToString, ObjectValuesAsStringLiteralTemplate, OddNumber, OldSchoolHtmlElement, OnPass, OnPassRemap, OneOf, OneToMany, OneToOne, OneToZero, OnlyFixedKeys, OnlyFn, OnlyFnProps, OnlyIndexKeys, OnlyOptional, OpeningBracket, OpeningMark, OpeningMarkPlus, Opt$1 as Opt, OptCr, OptCrThenIndent, OptDictProps, OptModifier, OptNumber, OptPercent, OptRecord, OptRequired, OptSpace, OptSpace2, OptSpace4, OptUrlQueryParameters, OptWhitespace, OptionalKeys, OptionalKeysTuple, OptionalParamFn, OptionalProps, OptionalSimpleScalarTokens, OptionalSpace, Or, OutputToken, PHONE_COUNTRY_CODES, PHONE_FORMAT, PLURAL_EXCEPTIONS, PLURAL_EXCEPTIONS_OLD, POWER_METRICS_LOOKUP, PRESSURE_METRICS_LOOKUP, PROTOCOL_DEFAULT_PORTS, PROXMOX_CT_STATE, PackageJson, PadEnd, PadStart, ParameterlessFn, ParseDate, ParseInt, ParseTime, ParsedDate, ParsedTime, PascalCase, PascalKeys, Passthrough, PathJoin, PhoneAreaCode, PhoneCountryCode, PhoneCountryLookup, PhoneFormat, PhoneNumber, PhoneNumberDelimiter, PhoneNumberType, PhoneNumberWithCountryCode, PhoneShortCode, PluralExceptions, Pluralize, PlusMinus, Pop, PortMapping, PortSpecifierOptions, Power, PowerMetrics, PowerUom, Precision, Prepend, PrependAll, Pressure, PressureMetrics, PressureUom, PriorDigit, PrivateKey, PrivateKeyOf, PrivateKeys, PromiseAll, Promised, Promisify, PropertyChar, ProtocolOptions, ProxyErr, PublicKeyOf, PublicKeys, Punctuation, Push, QUOTE_NESTING, QuotationMark, QuotationMarkPlus, QuoteCharacter, QuoteNesting, REPO_PAGE_TYPES, REPO_SOURCES, REPO_SOURCE_LOOKUP, RESISTANCE_METRICS_LOOKUP, RESULT, RawPhoneNumber, ReadonlyKeys, ReadonlyProps, RecKeyVariant, RecVariant, RecordKeyDefn, RecordKeyWideTokens, RecordValueTypeDefn, ReduceValues, RegexArray, RegexExecFn, RegexGroupValue, RegexHandlingStrategy, RegexTestFn, RegularExpression, RegularFn, RelativeUrl, RemoveEmpty, RemoveFnProps, RemoveFromEnd, RemoveFromStart, RemoveHttpProtocol, RemoveIndex, RemoveIndexKeys, RemoveMarked, RemoveNetworkProtocol, RemoveNever, RemovePhoneCountryCode, RemoveUndefined, RemoveUrlPort, RemoveUrlSource, RemoveWhitespace, RenameKey, RenderTime, Repeat, Replace, ReplaceAll, ReplaceAllFromTo, ReplaceAllToFrom, ReplaceBooleanInterpolation, ReplaceFromTo, ReplaceLast, ReplaceNumericInterpolation, ReplaceStringInterpolation, ReplaceType, RepoPageType, RepoSource, RepoUrls, RequireProps, RequiredKeys, RequiredKeysTuple, RequiredProps, RequiredSimpleScalarTokens, Resistance, ResistanceMetrics, ResistanceUom, ResolvedTokenType, RestEndpoint, RestMethod, RetailUrl, RetainAfter, RetainAfterLast, RetainBetween, RetainChars, RetainLiterals, RetainUntil, RetainUntil__Nested, RetainWhile, RetainWideTypes, ReturnTypes, ReturnValues, Returns, ReturnsBoolean, ReturnsFalse, ReturnsTrue, Reverse, ReverseLookup, Rfc1812, Rfc1812Like, RgbColor, RgbaColor, Right$1 as Right, RightContains, RightDoubleMark, RightEquals, RightExtends, RightHeavyDoubleTurned, RightHeavySingleTurned, RightIncludes, RightReversedDoublePrime, RightSingleMark, RightWhitespace, RuntimeSetType, RuntimeSetType__Intersection, RuntimeSetType__Union, RuntimeTakeFunction, RuntimeType, RuntimeType__Atomic, RuntimeType__Function, RuntimeType__Generator, RuntimeType__Kv, RuntimeType__Literal, RuntimeType__Set, RuntimeUnion, SAFE_ENCODING_KEYS, SAFE_ENCODING__BRACKETS, SAFE_ENCODING__QUOTES, SAFE_ENCODING__WHITESPACE, SAFE_STRING, SEASONS, SEASON_TO_MONTH_LOOKUP, SHAPE_DELIMITER, SHAPE_PREFIXES, SIMPLE_ARRAY_TOKENS, SIMPLE_CONTAINER_TOKENS, SIMPLE_DICT_TOKENS, SIMPLE_DICT_VALUES, SIMPLE_FN_TOKENS, SIMPLE_MAP_KEYS, SIMPLE_MAP_TOKENS, SIMPLE_MAP_VALUES, SIMPLE_OPT_SCALAR_TOKENS, SIMPLE_SCALAR_TOKENS, SIMPLE_SET_TOKENS, SIMPLE_SET_TYPES, SIMPLE_TOKENS, SIMPLE_UNION_TOKENS, SINGULAR_NOUN_ENDINGS, SKeys, SOCIAL_MEDIA, SOUTH_KOREAN_NEWS, SPANISH_NEWS, SPEED_METRICS_LOOKUP, SWISS_NEWS, SafeDecode, SafeDecodingConversion, SafeDecodingKey__Brackets, SafeDecodingKey__Quotes, SafeDecodingKey__Whitespace, SafeEncode, SafeEncodeEscaped, SafeEncodingConversion, SafeEncodingGroup, SafeEncodingKey__Brackets, SafeEncodingKey__Quotes, SafeEncodingKey__Whitespace, SafeString, SafeStringDecoder, SafeStringEncoder, SafeStringSymbol, Scalar, ScalarCallback, ScalarNotSymbol, Season, Second$1 as Second, SecondOfEach, SecretDefinition, SemanticDependency, SemanticVersion, SerializedComma, SerializedData, Set$1 as Set, SetCandidate, SetIndex, SetKey, SetKeyForce, SetKeyStrict, SetKeysTo, SetToString, Shape, ShapeApi, ShapeApiImplementation, ShapeApi__Scalars, ShapeCallback, ShapeSuggest, ShapeTupleOrUnion, SharedKeys, Shift, ShiftDecimalPlace, Shortest, SimpleArrayToken, SimpleContainerToken, SimpleDictToken, SimpleMapToken, SimpleScalarToken, SimpleSetToken, SimpleToken, SimpleType, SimpleTypeArray, SimpleTypeDict, SimpleTypeMap, SimpleTypeScalar, SimpleTypeSet, SimpleTypeUnion, SimpleUnionToken, SimplifyObject, SingleQuote, SingularNoun, SingularNounEnding, SizingUnits, Slice, SliceArray, SliceString, SmartMark, SmartMarkPlus, SnakeCase, SnakeKeys, SocialMediaPlatform, SocialMediaProfileUrl, SocialMediaUrl, Solo, Some, SomeEqual, SomeExtend, Something, Sort, SortByKey, SortByKeyOptions, SortOptions, SortOrder, SouthKoreanNewsCompanies, SouthKoreanNewsUrls, SpanishNewsCompanies, SpanishNewsUrls, SpecialChar, Speed, SpeedMetrics, SpeedUom, Split, Split2, SplitAtVariadic, SplitOnWhitespace, StackFrame, StackTrace, StandardMark, StartingWithTypeGuard, StartsWith, StartsWithNumber, StartsWithTemplateLiteral, StaticFn, StaticTakeFunction__CallBack, StaticTakeFunction__Rtn, StaticTemplateSections, StaticToken, StaticTokenApi, StrLen, StringDelimiter, StringEncoder, StringIsAfter, StringKeys, StringLength, StringLiteralFromTuple, StringLiteralTemplate, StringLiteralToken, StringLiteralType, StringSort, StringSortOptions, StringTokenUtilities, StripAfter, StripAfterLast, StripBefore, StripChars, StripFirst, StripLeading, StripLeadingStringTemplate, StripLeadingTemplate, StripLeftNonAlpha, StripSlash, StripSurround, StripSurroundConfigured, StripSurrounding, StripSurroundingStringTemplate, StripTrailing, StripTrailingStringTemplate, StripUntil, StripWhile, StrongMap, StrongMapTransformer, StrongMapTypes, StructuredStringType, Subtract, Success$1 as Success, Suggest, SuggestHexadecimal, SuggestIp6SubnetMask, SuggestIpAddress, Sum$1 as Sum, Surround, SurroundWith, SwissNewsCompanies, SwissNewsUrls, SymbolKind, SyncFunction, Synchronous, TARGET_DNS, TEMPERATURE_METRICS_LOOKUP, TIME_METRICS_LOOKUP, TLD, TOP_LEVEL_DOMAINS, TSV, TT_ATOMICS, TT_Atomic, TT_CONTAINERS, TT_Container, TT_DELIMITER, TT_FUNCTIONS, TT_Function, TT_KIND_VARIANTS, TT_SETS, TT_SINGLETONS, TT_START, TT_STOP, TT_Set, TT_Singleton, TURKISH_NEWS, 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, TW_HUE, TW_HUE_NEUTRAL, TW_HUE_STATIC, TW_HUE_VIBRANT, 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, TW_MODIFIERS_ORDER, TW_MODIFIERS_RELN, TW_MODIFIERS_SIZING, TYPE_COMPARISONS, TYPE_KINDS, TYPE_OF, TYPE_TOKEN_REC_KEY_VARIANTS, TYPE_TOKEN_REC_VARIANTS, TYPE_TOKEN_STRING_SET_VARIANTS, TYPE_TOKEN_UNION_SET_VARIANTS, TYPE_TRANSFORMS, TakeDate, TakeFirst, TakeFunction, TakeFunction__Options, TakeHours, TakeLast, TakeMilliseconds, TakeMinutes, TakeMonth, TakeNestedString, TakeNumeric, TakeNumericOptions, TakeParser, TakeProp, TakeSeconds, TakeStart, TakeStartCallback, TakeStartFn, TakeStartMatches, TakeStartMatchesKind, TakeStartMatches__Callback, TakeStartMatches__Default, TakeStartMatches__Mapper, TakeState, TakeTimezone, TakeUtility, TakeWrapper, TakeYear, TargetUrl, Temperature, TemperatureMetrics, TemperatureUom, TemplateBlock__BARE, TemplateBlocks, TemplateMap, TemplateMap__Basic, TemplateMap__Generics, TemplateParams, TemporalInstanceLike, TemporalLike, TemporalPlainDateTimeLike, TemporalTimeZoneLike, TemporalZonedDateTimeLike, Test, Thenable, ThreeDigitMillisecond, TimeMetric, TimeMetrics, TimeUom, TimeZoneExplicit, TimezoneOffset, ToBoolean, ToCSV, ToChoices, ToCsv, ToFn, ToInteger, ToIntegerOp, ToJson, ToJsonArray, ToJsonObject, ToJsonOptions, ToJsonScalar, ToJsonValue, ToKv, ToKvOptions, ToLiteralOptions, ToNumber, ToNumericArray, ToPhoneFormat, ToString, ToStringArray, ToStringLiteral, ToStringLiteral__Array, ToStringLiteral__Object, ToStringLiteral__Scalar, ToStringLiteral__Union, ToUnion, Token$1 as Token, TokenIsStatic, TokenMapper, TokenName, TokenParamsConstraint, TokenResolver, TokenSyntax, TokenType, TokenizeStringLiteral, Tokenizer, Trim, TrimCharEnd, TrimDictionary, TrimEach, TrimEnd, TrimLeft, TrimRight, TrimStart, Truncate, TruncateAtLen, TruthyReturns, Tuple$1 as Tuple, TupleDefn, TupleMeta, TupleRange, TupleToIntersection, TupleToUnion, TurkishNewsCompanies, TurkishNewsUrls, TwChroma, TwChroma100, TwChroma200, TwChroma300, TwChroma400, TwChroma50, TwChroma500, TwChroma600, TwChroma700, TwChroma800, TwChroma900, TwChroma950, TwChromaLookup, TwColor, TwColorOptionalOpacity, TwColorTarget, TwColorWithLuminosity, TwColorWithLuminosityOpacity, TwHue, TwLumi100, TwLumi200, TwLumi300, TwLumi400, TwLumi50, TwLumi500, TwLumi600, TwLumi700, TwLumi800, TwLumi900, TwLumi950, TwLuminosity, TwLuminosityLookup, TwModifier, TwModifier__Core, TwModifier__Order, TwModifier__Reln, TwModifier__Size, TwModifiers, TwNeutralColor, TwSizeResponsive, TwStaticColor, TwTarget__Color, TwTarget__ColorLuminosity, TwTarget__ColorLuminosityWithOpacity, TwTarget__ColorName, TwTarget__ColorWithOptPrefixes, TwTarget__Color__Light, TwVibrantColor, TwoDigitDate, TwoDigitHour, TwoDigitMinute, TwoDigitMonth, TwoDigitSecond, Type$1 as Type, TypeDefaultValue, TypeDefinition, TypeDefn, TypeDefnValidations, TypeGuard, TypeHasDefaultValue, TypeHasUnderlying, TypeHasValidations, TypeIsRequired, TypeKind, TypeKindContainer, TypeKindContainerNarrow, TypeKindContainerWide, TypeKindFalsy, TypeKindLiteral, TypeKindWide, TypeOf, TypeOfArray, TypeOfExtended, TypeOfTypeGuard, TypeOptions, TypeReplace, TypeRequired, TypeStrength, TypeSubtype, TypeToken, TypeTokenAtomics, TypeTokenContainers, TypeTokenDelimiter, TypeTokenFunctions, TypeTokenKind, TypeTokenLookup, TypeTokenSets, TypeTokenSingletons, TypeTokenStart, TypeTokenStop, TypeToken__Boolean, TypeToken__False, TypeToken__Fn, TypeToken__FnSet, TypeToken__Gen, TypeToken__Never, TypeToken__Null, TypeToken__Number, TypeToken__NumberSet, TypeToken__Rec, TypeToken__String, TypeToken__StringSet, TypeToken__True, TypeToken__Undefined, TypeToken__UnionSet, TypeToken__Unknown, TypeTuple, TypeUnderlying, TypedError, TypedFunction, TypedFunctionWithDictionary, TypedParameter, UK_NEWS, UPPER_ALPHA_CHARS, US_NEWS, US_STATE_LOOKUP, US_STATE_LOOKUP_PROVINCES, US_STATE_LOOKUP_STRICT, UUID, UUID_Urn, UkNewsCompanies, UkNewsUrls, Unbrand, UnbrandValues, UnderlyingType, UnionArrayToTuple, UnionElDefn, UnionFilter, UnionFrom, UnionFromProp, UnionHasArray, UnionMemberEquals, UnionMemberExtends, UnionMutate, UnionMutationOp, UnionToIntersection, UnionToString, UnionToTuple, UnionWithAll, Unique, UniqueKeys, UniqueKeysUnion, UniqueKv, Unset, UntilLast, UntilLastOptions, Uom, UomTypeGuard, UpdateTake, UpperAlphaChar, UpsertKeyValue, Uri, UrlBuilder, UrlMeta, UrlOptions, UrlPath, UrlPathChars, UrlPort, UrlQueryParameters, UrlsFrom, UsNewsCompanies, UsNewsUrls, UsPhoneNumber, UsStateAbbrev, UsStateName, VOLTAGE_METRICS_LOOKUP, VOLUME_METRICS_LOOKUP, ValidKey, Validate, ValidateCharacterSet, ValidateLength, ValidateLengthOptions, ValidateMax, ValidateMin, ValidationFunction, ValueAtDotPath, ValueCallback, ValueOrReturnValue, Values, Variable, VariableChar, VariadicParameterModifiers, VariadicType, Visa, VisaMastercard, Voltage, VoltageMetrics, VoltageUom, Volume, VolumeDefinition, VolumeMapping, VolumeMetrics, VolumeUom, VueComputedRef, VueRef, WALGREENS_DNS, WALMART_DNS, WAYFAIR_DNS, WEEKEND_DAY, WEEKEND_DAY_ABBREV, WEEK_DAY, WEEK_DAY_ABBREV, WHITESPACE_CHARS, WHOLE_FOODS_DNS, WIDE_CONTAINER_TYPE_KINDS, WIDE_TYPE_KINDS, WalgreensUrl, WalmartUrl, WayFairUrl, WeakMapKeyDefn, WeakMapToString, WeakMapValueDefn, When, WhenErr, WhenNever, WhereLeft, Whitespace, WholeFoodsUrl, WideAssignment, WideContainerNames, WideScalarModifiers, WideTokenNames, WideTypeName, Widen, WidenContainer, WidenFn, WidenFunction, WidenLiteral, WidenScalar, WidenTuple, WidenUnion, WidenValues, WithDefault, WithKeys, WithNumericKeys, WithStringKeys, WithTemplateKeys, WithValue, WithoutKeys, WithoutValue, WrapperFn, Xor, YouTubeCreatorUrl, YouTubeEmbedUrl, YouTubeFeedType, YouTubeFeedUrl, YouTubeHistoryUrl, YouTubeHome, YouTubeLikedPlaylistUrl, YouTubeMeta, YouTubePageType, YouTubePlaylistUrl, YouTubeShareUrl, YouTubeSubscriptionsUrl, YouTubeUrl, YouTubeUsersPlaylistUrl, YouTubeVideoUrl, YouTubeVideosInPlaylist, ZARA_DNS, ZIP_TO_STATE, ZaraUrl, Zero, ZeroToMany, ZeroToOne, ZeroToZero, Zip5, ZipCode, ZipPlus4, ZipToState, _TrimDict, abs, add, addFnToProps, addPropsToFn, addToken, afterFirst, and, append, array, asArray, asChars, asDate, asDateTime, asEpochTimestamp, asFourDigitYear, asFromTo, asInputToken, asIsoDate, asIsoDateTime, asNumber, asOutputFunction, asPhoneFormat, asRecord, asString, asTakeState, asTemplate, asTwoDigitMonth, asType, asTypeSubtype, asTypedError, asUnion, asVueRef, between, boolean, brand, capitalize, cardType, choices, compare, contains, createConstant, createConverter, createCssKeyframe, createCssSelector, createErrorCondition, createFifoQueue, createFixedLengthArray, createFnWithProps, createGrammar, createLifoQueue, createNestingConfig, createStaticTakeFunction, createTakeFunction, createTakeStartEndFunction, createTakeWhileFunction, createTemplateRegExp, createToken, createTokenSyntax, cssColor, cssFromDefinition, csv, dateObjectToIso, daysInMonth, decrement, defineCss, defineObj, defineObject, defineObjectWith, defineTuple, doesExtend, dropFirstStackFrame, eachAsString, endsWith, endsWithTypeguard, ensureLeading, ensureSurround, ensureTrailing, entries, equalsSome, err, errCondition, every, filter, filterEmpty, filterUndefined, find, firstChar, fn, fnProps, fourDigitYear, freeze, fromDefineObject, fromDefineTuple, fromInputToken, fromKeyValue, get, getDaysBetween, getEach, getMonthAbbrev, getMonthName, getMonthNumber, getPhoneCountryCode, getSeason, getTailwindModifiers, getToday, getTokenData, getTokenKind, getTomorrow, getTypeSubtype, getUrlBase, getUrlDefaultPort, getUrlDynamics, getUrlPath, getUrlPort, getUrlProtocol, getUrlQueryParams, getUrlSource, getWeekNumber, getYear, getYesterday, getYouTubePageType, handleDoneFn, hasCountryCode, hasDefaultValue, hasHtml, hasIndexOf, hasKeys, hasNonStringKeys, hasOnlyStringKeys, hasOnlyStringValues, hasOnlySymbolKeys, hasOverlappingKeys, hasProtocol, hasProtocolPrefix, hasSymbolKeys, hasUrlPort, hasUrlQueryParameter, hasValidHtml, hasWhiteSpace, idLiteral, idTypeGuard, identity, ifArray, ifArrayPartial, ifBoolean, ifChar, ifContainer, ifDefined, ifEmpty, ifEqual, ifError, ifFalse, ifFunction, ifHasKey, ifLength, ifLowercaseChar, ifNotNull, ifNull, ifNumber, ifObject, ifSameType, ifScalar, ifString, ifTrue, ifUndefined, ifUppercaseChar, increment, indexOf, infer, integer, intersect, intersection, ip6GroupExpansion, isAccelerationMetric, isAccelerationUom, isAfter, isAlpha, isAmazonUrl, isAmericanExpress, isApi, isApiSurface, isAppleUrl, isAreaMetric, isAreaUom, isArray, isAustralianNewsUrl, isBefore, isBelgiumNewsUrl, isBestBuyUrl, isBitbucketUrl, isBoolean, isBooleanArray, isBooleanLike, isCanadianNewsUrl, isChineseNewsUrl, isCodeCommitUrl, isComparisonOperation, isConstant, isContainer, isCostCoUrl, isCountryAbbrev, isCountryCode2, isCountryCode3, isCountryName, isCreditCard, isCssAspectRatio, isCsv, isCurrentMetric, isCurrentUom, isCvsUrl, isDanishNewsUrl, isDate, isDateLike, isDateMeta, isDayJs, isDefineObject, isDefineTuple, isDefined, isDellUrl, isDeltaReturn, isDictionary, isDistanceMetric, isDistanceUom, isDomainName, isDoneFn, isDoubleLeap, isDutchNewsUrl, isEbayUrl, isEmail, isEmpty, isEnergyMetric, isEnergyUom, isEpochInMilliseconds, isEpochInSeconds, isEqual, isErr, isError, isEscapeFunction, isEtsyUrl, isEven, isFalse, isFalsy, isFnWithParams, isFourDigitYear, isFrenchNewsUrl, isFrequencyMetric, isFrequencyUom, isFunction, isGermanNewsUrl, isGithubIssueUrl, isGithubIssuesListUrl, isGithubOrgUrl, isGithubProjectUrl, isGithubProjectsListUrl, isGithubReleaseTagUrl, isGithubReleasesListUrl, isGithubRepoReleaseTagUrl, isGithubRepoReleasesUrl, isGithubRepoUrl, isGithubUrl, isGreaterThan, isGreaterThanOrEqual, isHexadecimal, isHmUrl, isHomeDepotUrl, isHtml, isHtmlComponentTag, isHtmlElement, isIanaTimezone, isIkeaUrl, isInUnion, isIndexable, isIndianNewsUrl, isInlineSvg, isInputToken, isInputToken__String, isInteger, isIp4Address, isIp6Address, isIp6Subnet, isIpAddress, isIso3166Alpha2, isIso3166Alpha3, isIso3166CountryCode, isIso3166CountryName, isIsoDate, isIsoDateTime, isIsoExplicitDate, isIsoExplicitTime, isIsoImplicitDate, isIsoImplicitTime, isIsoMonthDate, isIsoTime, isIsoYear, isIsoYearMonth, isItalianNewsUrl, isJapaneseNewsUrl, isKrogersUrl, isLeapYear, isLength, isLikeRegExp, isLowesUrl, isLuminosityMetric, isLuminosityUom, isLuxonDate, isMacysUrl, isMap, isMassMetric, isMassUom, isMastercard, isMetric, isMetricCategory, isMexicanNewsUrl, isMinimalDigitDate, isMoment, isMonthAbbrev, isMonthName, isNarrowable, isNarrowableArray, isNarrowableDictionary, isNegativeNumber, isNestingEnd, isNestingEndMatch, isNestingKeyValue, isNestingStart, isNestingTuple, isNever, isNewsUrl, isNikeUrl, isNorwegianNewsUrl, isNotEmpty, isNotError, isNotNull, isNotUnset, isNothing, isNull, isNumber, isNumberLike, isNumericArray, isNumericString, isObject, isObjectKey, isObjectKeyRequiringQuotes, isOdd, isOk, isOptionalParamFunction, isParsedDate, isPhoneNumber, isPowerMetric, isPowerUom, isPressureMetric, isPressureUom, isProtocol, isProtocolPrefix, isReadonlyArray, isRef, isRegExp, isRepoSource, isRepoUrl, isResistanceMetric, isResistanceUom, isRetailUrl, isSameDay, isSameMonth, isSameMonthYear, isSameTypeOf, isSameYear, isScalar, isSemanticVersion, isSet, isSetContainer, isShape, isShapeCallback, isSimpleContainerToken, isSimpleContainerTokenTuple, isSimpleScalarToken, isSimpleScalarTokenTuple, isSimpleToken, isSimpleTokenTuple, isSocialMediaProfileUrl, isSocialMediaUrl, isSouthKoreanNewsUrl, isSpanishNewsUrl, isSpecificConstant, isSpeedMetric, isSpeedUom, isStaticTemplate, isString, isStringArray, isStringLiteral, isStringOrNumericArray, isSwissNewsUrl, isSymbol, isTailwindColor, isTailwindColorClass, isTailwindColorName, isTailwindColorTarget, isTailwindColorWithLuminosity, isTailwindColorWithLuminosityAndOpacity, isTailwindModifier, isTakeState, isTargetUrl, isTemperatureMetric, isTemperatureUom, isTemporalDate, isThenable, isThisMonth, isThisWeek, isThisYear, isThreeDigitMillisecond, isTimeMetric, isTimeUom, isTimezoneOffset, isToday, isTomorrow, isTrimable, isTrue, isTruthy, isTuple, isTurkishNewsUrl, isTwoDigitDate, isTwoDigitHour, isTwoDigitMinute, isTwoDigitMonth, isTwoDigitSecond, isTypeOf, isTypeSubtype, isTypeTuple, isTypedError, isUkNewsUrl, isUndefined, isUnset, isUom, isUomCategory, isUri, isUrl, isUrlPath, isUrlSource, isUsNewsUrl, isUsPhoneNumber, isUsStateAbbreviation, isUsStateName, isValidAtomicTag, isValidBlockTag, isValidComparisonParams, isValidHtml, isValidHtmlTag, isVariable, isVisa, isVisaMastercard, isVoltageMetric, isVoltageUom, isVolumeMetric, isVolumeUom, isWalgreensUrl, isWalmartUrl, isWayfairUrl, isWeakMap, isWholeFoodsUrl, isYesterday, isYouTubeCreatorUrl, isYouTubeFeedHistoryUrl, isYouTubeFeedUrl, isYouTubePlaylistUrl, isYouTubePlaylistsUrl, isYouTubeShareUrl, isYouTubeSubscriptionsUrl, isYouTubeTrendingUrl, isYouTubeUrl, isYouTubeVideoUrl, isYouTubeVideosInPlaylist, isZaraUrl, isZipCode, isZipCode5, isZipPlus4, joinWith, keysOf, keysWithError, kindLiteral, last, lastChar, lessThan, lessThanOrEqual, literal, logicalReturns, lookupCountryAlpha2, lookupCountryAlpha3, lookupCountryCode, lookupCountryName, lowercase, map, maybePhoneNumber, mergeObjects, mergeScalars, mergeTuples, mutable, nameLiteral, narrow, nbsp, nestedSplit, nesting, not, nullType, objectValues, omitKeys, optional, optionalOrNull, or, orNull, parseDate, parseDateObject, parseIsoDate, parseNumericDate, pathJoin, pluralize, pop, record, regexToken, removePhoneCountryCode, removeTailwindModifiers, removeUrlProtocol, replace, replaceAll, replaceAllFromTo, result$1 as result, retainAfter, retainAfterInclusive, retainChars, retainKeys, retainUntil, retainUntilInclusive, retainUntil__Nested, retainWhile, reverse, reverseLookup, rightWhitespace, setupSafeStringEncoding, shape, sharedKeys, shift, simpleContainerToken, simpleContainerType, simpleScalarToken, simpleScalarType, simpleToken, simpleType, slice, sortByKey, split, startsWith, startsWithTypeguard, stripAfter, stripAfterLast, stripBefore, stripChars, stripLeading, stripParenthesis, stripSurround, stripTrailing, stripUntil, stripWhile, surround, take, takeNumericCharacters, takeStart, takeStringToken, threeDigitMillisecond, toAllCaps, toCamelCase, toInteger, toIsoDateString, toJSON, toJson, toKebabCase, toKeyValue, toLowercase, toNumber, toNumericArray, toPascalCase, toSnakeCase, toString, toStringLiteral, toStringLiteral__Object, toStringLiteral__Tuple, toStringToken, trim, trimEnd, trimStart, truncate, tuple, twColor, twoDigitHour, twoDigitMinute, twoDigitSecond, typedError, unbrand, uncapitalize, undefinedType, unionize, unique, uniqueKeys, unknown, unset, urlMeta, usingLookup, validHtmlAttributes, valuesOf, weakMap, widen, withDefaults, withKeys, withValue, withoutKeys, withoutValue, youtubeEmbed, youtubeMeta };
|
|
47914
47974
|
//# sourceMappingURL=index.d.ts.map
|