inferred-types 0.55.22 → 0.55.23
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/inferred-types/dist/index.cjs +45 -4
- package/modules/inferred-types/dist/index.cjs.map +1 -1
- package/modules/inferred-types/dist/index.d.ts +207 -115
- package/modules/inferred-types/dist/index.js +42 -4
- package/modules/inferred-types/dist/index.js.map +1 -1
- package/modules/runtime/dist/index.cjs +53 -6
- package/modules/runtime/dist/index.cjs.map +1 -1
- package/modules/runtime/dist/index.d.ts +81 -52
- package/modules/runtime/dist/index.js +50 -6
- package/modules/runtime/dist/index.js.map +1 -1
- package/modules/types/dist/index.d.ts +127 -64
- package/package.json +1 -1
|
@@ -7877,23 +7877,23 @@ type ValidChars$1<T extends readonly string[]> = [] extends T ? true : First$1<T
|
|
|
7877
7877
|
*/
|
|
7878
7878
|
type IsVariable$1<T extends string> = T extends Variable$1 ? ValidChars$1<Chars$1<T>> extends true ? true : false : false;
|
|
7879
7879
|
|
|
7880
|
-
type Process$
|
|
7880
|
+
type Process$1B$1<TVal, TDefault> = TVal extends Something$1 ? TVal : TDefault;
|
|
7881
7881
|
/**
|
|
7882
7882
|
* **Default**`<TVal,TDefault,[TProtect]>`
|
|
7883
7883
|
*
|
|
7884
7884
|
* Branching operator which allows giving a value `TVal` a _default value_ when
|
|
7885
7885
|
* it's value is either `null` or `undefined`.
|
|
7886
7886
|
*/
|
|
7887
|
-
type Default$1<TVal, TDefault> = Process$
|
|
7887
|
+
type Default$1<TVal, TDefault> = Process$1B$1<TVal, TDefault>;
|
|
7888
7888
|
|
|
7889
|
-
type Process$
|
|
7889
|
+
type Process$1A$1<TConditions extends readonly boolean[], TBooleanSeen extends boolean> = [] extends TConditions ? IfEqual$1<TBooleanSeen, true, boolean, true> : [First$1<TConditions>] extends [false] ? false : Process$1A$1<AfterFirst$1<TConditions>, TBooleanSeen>;
|
|
7890
7890
|
/**
|
|
7891
7891
|
* **And**`<TConditions, [TEmpty]>`
|
|
7892
7892
|
*
|
|
7893
7893
|
* Allows an array of conditions which are either ARE a boolean value or a
|
|
7894
7894
|
* function which evaluates to a boolean value to be logically AND'd together.
|
|
7895
7895
|
*/
|
|
7896
|
-
type And$1<TConditions, TEmpty extends boolean = false> = TConditions extends readonly (boolean | LogicFunction$1)[] ? IsEqual$1<TConditions, []> extends true ? TEmpty : LogicalReturns$1<TConditions> extends readonly boolean[] ? Process$
|
|
7896
|
+
type And$1<TConditions, TEmpty extends boolean = false> = TConditions extends readonly (boolean | LogicFunction$1)[] ? IsEqual$1<TConditions, []> extends true ? TEmpty : LogicalReturns$1<TConditions> extends readonly boolean[] ? Process$1A$1<LogicalReturns$1<TConditions>, NarrowlyContains$1<LogicalReturns$1<TConditions>, boolean>> : never : never;
|
|
7897
7897
|
|
|
7898
7898
|
/**
|
|
7899
7899
|
* comparison operators which require the base type to be a string
|
|
@@ -7910,14 +7910,14 @@ type NumericComparatorOperation$1 = "greaterThan" | "greaterThanOrEqual" | "less
|
|
|
7910
7910
|
*/
|
|
7911
7911
|
type ComparatorOperation$1 = "extends" | "equals" | StringComparatorOperation$1 | "contains" | "containsAll" | NumericComparatorOperation$1 | "returnEquals" | "returnExtends";
|
|
7912
7912
|
type Unionize$1<T> = T extends readonly unknown[] ? TupleToUnion$1<T> : T;
|
|
7913
|
-
type Process$
|
|
7913
|
+
type Process$1z$1<TVal, TOp extends ComparatorOperation$1, TComparator> = TOp extends "extends" ? DoesExtend$1<TVal, Unionize$1<TComparator>> : TOp extends "equals" ? IsEqual$1<TVal, Unionize$1<TComparator>> : TOp extends "contains" ? [TVal] extends [string | number | Tuple$1] ? Contains$1<TVal, TComparator> : never : TOp extends "containsAll" ? [TVal] extends [Tuple$1] ? [TComparator] extends [string | number | readonly string[]] ? Contains$1<TVal, TComparator> : never : never : TOp extends "startsWith" ? [TVal] extends [string | number] ? [TComparator] extends [string | number | readonly string[]] ? StartsWith$1<TVal, TComparator> : never : never : TOp extends "greaterThan" ? And$1<[Extends$1<TComparator, NumberLike$1>, Extends$1<TVal, NumberLike$1>]> extends true ? IsGreaterThan$1<As$1<TVal, NumberLike$1>, As$1<TComparator, NumberLike$1>> : never : TOp extends "greaterThanOrEqual" ? And$1<[Extends$1<TComparator, NumberLike$1>, Extends$1<TVal, NumberLike$1>]> extends true ? IsGreaterThanOrEqual$1<As$1<TVal, NumberLike$1>, As$1<TComparator, NumberLike$1>> : never : TOp extends "lessThan" ? And$1<[Extends$1<TComparator, NumberLike$1>, Extends$1<TVal, NumberLike$1>]> extends true ? IsLessThan$1<As$1<TVal, NumberLike$1>, As$1<TComparator, NumberLike$1>> : never : TOp extends "lessThanOrEqual" ? And$1<[Extends$1<TComparator, NumberLike$1>, Extends$1<TVal, NumberLike$1>]> extends true ? IsLessThanOrEqual$1<As$1<TVal, NumberLike$1>, As$1<TComparator, NumberLike$1>> : never : TOp extends "endsWith" ? [TVal] extends [string | number] ? [TComparator] extends [string | number | readonly string[]] ? EndsWith$1<TVal, TComparator> : never : never : TOp extends "returnEquals" ? TVal extends ((...args: any[]) => any) ? IsEqual$1<ReturnType<TVal>, TComparator> : false : TOp extends "returnExtends" ? TVal extends ((...args: any[]) => any) ? IsEqual$1<ReturnType<TVal>, TComparator> : false : never;
|
|
7914
7914
|
/**
|
|
7915
7915
|
* **Compare**`<TVal,TOp,TComparator>`
|
|
7916
7916
|
*
|
|
7917
7917
|
* Compares the value `TVal` with `TComparator` using
|
|
7918
7918
|
* the `TOp` _operator_.
|
|
7919
7919
|
*/
|
|
7920
|
-
type Compare$1$1<TVal, TOp extends ComparatorOperation$1, TComparator> = WhenNever$1<Process$
|
|
7920
|
+
type Compare$1$1<TVal, TOp extends ComparatorOperation$1, TComparator> = WhenNever$1<Process$1z$1<TVal, TOp, TComparator>>;
|
|
7921
7921
|
|
|
7922
7922
|
type Negate$1<TVal> = IsNever$1<TVal> extends true ? never : [TVal] extends [boolean] ? IsTrue$1<TVal> extends true ? false : IsFalse$1<TVal> extends true ? true : boolean : [TVal] extends [LogicFunction$1] ? Negate$1<ReturnType<LogicFunction$1>> : never;
|
|
7923
7923
|
type NegateTuple$1<TTuple extends readonly (boolean | LogicFunction$1)[], TResults extends readonly (boolean | LogicFunction$1)[] = []> = [] extends TTuple ? IsEqual$1<TResults, [], false, TResults> : NegateTuple$1<AfterFirst$1<TTuple>, [
|
|
@@ -7939,7 +7939,7 @@ type NegateTuple$1<TTuple extends readonly (boolean | LogicFunction$1)[], TResul
|
|
|
7939
7939
|
*/
|
|
7940
7940
|
type Not$1<TVal, TNotBoolean extends boolean = false> = [TVal] extends [boolean] ? Exclude<As$1<Negate$1<TVal>, boolean>, any[]> : [TVal] extends [LogicFunction$1] ? As$1<Negate$1<ReturnType<TVal>>, boolean> : [TVal] extends [readonly (LogicFunction$1 | boolean)[]] ? As$1<NegateTuple$1<TVal>, readonly boolean[]> : TNotBoolean;
|
|
7941
7941
|
|
|
7942
|
-
type Process$
|
|
7942
|
+
type Process$1y$1<TConditions extends readonly boolean[], TBooleanSean extends boolean> = NarrowlyContains$1<TConditions, true> extends true ? true : [IsEqual$1<TBooleanSean, true>] extends [true] ? boolean : false;
|
|
7943
7943
|
type ConditionError$1<TErr> = TErr extends ErrorCondition$1 ? ProxyError$1<TErr, "Or", "TConditions"> : never;
|
|
7944
7944
|
/**
|
|
7945
7945
|
* **Or**`<TConditions, [TEmpty]>`
|
|
@@ -7952,16 +7952,16 @@ type ConditionError$1<TErr> = TErr extends ErrorCondition$1 ? ProxyError$1<TErr,
|
|
|
7952
7952
|
*
|
|
7953
7953
|
* **Related:** `And`
|
|
7954
7954
|
*/
|
|
7955
|
-
type Or$1<TConditions, TEmpty extends boolean = false> = IsNever$1<TConditions> extends true ? Throw$1<"invalid-never", `Or<TConditions> received "never" for it's conditions!`, "Or"> : IsEqual$1<TConditions, []> extends true ? TEmpty : TConditions extends readonly (boolean | LogicFunction$1)[] ? LogicalReturns$1<TConditions> extends readonly boolean[] ? Process$
|
|
7955
|
+
type Or$1<TConditions, TEmpty extends boolean = false> = IsNever$1<TConditions> extends true ? Throw$1<"invalid-never", `Or<TConditions> received "never" for it's conditions!`, "Or"> : IsEqual$1<TConditions, []> extends true ? TEmpty : TConditions extends readonly (boolean | LogicFunction$1)[] ? LogicalReturns$1<TConditions> extends readonly boolean[] ? Process$1y$1<LogicalReturns$1<TConditions>, NarrowlyContains$1<LogicalReturns$1<TConditions>, boolean>> : never : IsErrorCondition$1<TConditions> extends true ? ConditionError$1<TConditions> : Throw$1<"invalid-conditions", `The conditions passed to Or<TConditions> were invalid!`, "Or", {
|
|
7956
7956
|
library: "inferred-types/constants";
|
|
7957
7957
|
value: TConditions;
|
|
7958
7958
|
}>;
|
|
7959
7959
|
|
|
7960
|
-
type Process$
|
|
7960
|
+
type Process$1x$1<TElements extends readonly unknown[], TOp extends ComparatorOperation$1, TComparator> = [] extends TElements ? false : [WhenNever$1<Compare$1$1<First$1<TElements>, TOp, TComparator>>] extends [true] ? true : Process$1x$1<AfterFirst$1<TElements>, TOp, TComparator>;
|
|
7961
7961
|
type Some$1<TContainer extends Container$1, TOp extends "extends" | "equals" | "startsWith" | "endsWith" | "lessThan" | "greaterThan", TComparator extends Or$1<[
|
|
7962
7962
|
IsEqual$1<TOp, "startsWith">,
|
|
7963
7963
|
IsEqual$1<TOp, "endsWith">
|
|
7964
|
-
]> extends true ? string : Or$1<[IsEqual$1<TOp, "lessThan">, IsEqual$1<TOp, "greaterThan">]> extends true ? NumberLike$1 : unknown> = TContainer extends readonly unknown[] ? Process$
|
|
7964
|
+
]> extends true ? string : Or$1<[IsEqual$1<TOp, "lessThan">, IsEqual$1<TOp, "greaterThan">]> extends true ? NumberLike$1 : unknown> = TContainer extends readonly unknown[] ? Process$1x$1<TContainer, TOp, TComparator> : TContainer extends Dictionary$1 ? Process$1x$1<Values$1<TContainer>, TOp, TComparator> : never;
|
|
7965
7965
|
|
|
7966
7966
|
type AllAcc$1<TList extends readonly unknown[], TExtend> = [] extends TList ? true : If$1<Extends$1<First$1<TList>, TExtend>, AllAcc$1<AfterFirst$1<TList>, TExtend>, false>;
|
|
7967
7967
|
/**
|
|
@@ -8052,11 +8052,11 @@ type Contains$1<TContent extends string | number | readonly unknown[], TComparat
|
|
|
8052
8052
|
type DoesExtend$1<TValue, TExtends> = IsNever$1<TValue> extends true ? false : [TValue] extends [TExtends] ? true : false;
|
|
8053
8053
|
|
|
8054
8054
|
type Test$1$1<TValue extends string, TComparator extends string> = TValue extends `${string}${TComparator}` ? true : false;
|
|
8055
|
-
type Process$
|
|
8055
|
+
type Process$1w$1<TValue extends string, TComparator extends string> = IsStringLiteral$1<TComparator> extends true ? IsStringLiteral$1<TValue> extends true ? Test$1$1<TValue, TComparator> : boolean : boolean;
|
|
8056
8056
|
type ProcessEach$1$1<TValue extends string, TComparator extends readonly string[]> = Or$1<{
|
|
8057
|
-
[K in keyof TComparator]: Process$
|
|
8057
|
+
[K in keyof TComparator]: Process$1w$1<TValue, TComparator[K]>;
|
|
8058
8058
|
}>;
|
|
8059
|
-
type PreProcess$4$1<TValue extends string, TComparator extends string | readonly string[]> = TComparator extends readonly string[] ? ProcessEach$1$1<TValue, TComparator> : TComparator extends string ? Process$
|
|
8059
|
+
type PreProcess$4$1<TValue extends string, TComparator extends string | readonly string[]> = TComparator extends readonly string[] ? ProcessEach$1$1<TValue, TComparator> : TComparator extends string ? Process$1w$1<TValue, TComparator> : never;
|
|
8060
8060
|
/**
|
|
8061
8061
|
* **EndsWith**<TValue, TComparator>
|
|
8062
8062
|
*
|
|
@@ -8093,13 +8093,13 @@ type _HasArray$1<TList extends readonly unknown[]> = [] extends TList ? false :
|
|
|
8093
8093
|
*/
|
|
8094
8094
|
type HasArray$1<TList extends readonly unknown[]> = _HasArray$1<TList>;
|
|
8095
8095
|
|
|
8096
|
-
type Process$
|
|
8096
|
+
type Process$1v$1<TStr extends string, TChars extends string, _TOp extends "any" | "all"> = TStr extends `${string}${TChars}${string}` ? true : false;
|
|
8097
8097
|
type ProcessTuple$4$1<TStr extends string, TChars extends readonly string[], TOp extends "any" | "all"> = TOp extends "any" ? Or$1<{
|
|
8098
8098
|
[K in keyof TChars]: TStr extends `${string}${TChars[K]}${string}` ? true : false;
|
|
8099
8099
|
}> : And$1<{
|
|
8100
8100
|
[K in keyof TChars]: TStr extends `${string}${TChars[K]}${string}` ? true : false;
|
|
8101
8101
|
}>;
|
|
8102
|
-
type PreProcess$3$1<TStr extends string, TChars extends string, TOp extends "any" | "all"> = IsUnion$1<TChars> extends true ? UnionToTuple$1$1<TChars> extends readonly string[] ? ProcessTuple$4$1<TStr, UnionToTuple$1$1<TChars>, TOp> : never : Process$
|
|
8102
|
+
type PreProcess$3$1<TStr extends string, TChars extends string, TOp extends "any" | "all"> = IsUnion$1<TChars> extends true ? UnionToTuple$1$1<TChars> extends readonly string[] ? ProcessTuple$4$1<TStr, UnionToTuple$1$1<TChars>, TOp> : never : Process$1v$1<TStr, TChars, TOp>;
|
|
8103
8103
|
/**
|
|
8104
8104
|
* **HasCharacters**`<TStr,TChars>`
|
|
8105
8105
|
*
|
|
@@ -8113,7 +8113,7 @@ type PreProcess$3$1<TStr extends string, TChars extends string, TOp extends "any
|
|
|
8113
8113
|
*/
|
|
8114
8114
|
type HasCharacters$1<TStr extends string, TChars extends string | readonly string[], TOp extends "any" | "all" = "any"> = IsStringLiteral$1<TStr> extends true ? TChars extends string ? IsStringLiteral$1<TChars> extends true ? PreProcess$3$1<TStr, TChars, TOp> : boolean : TChars extends readonly string[] ? AllStringLiterals$1<AsArray$1<TChars>> extends true ? ProcessTuple$4$1<TStr, TChars, TOp> : boolean : boolean : boolean;
|
|
8115
8115
|
|
|
8116
|
-
type Process$
|
|
8116
|
+
type Process$1u$1<TStr extends string, TChars extends string> = ReplaceAll$1<TStr, TChars, ""> extends "" ? false : true;
|
|
8117
8117
|
/**
|
|
8118
8118
|
* **HasOtherCharacters**`<TStr,TChars>`
|
|
8119
8119
|
*
|
|
@@ -8125,7 +8125,7 @@ type Process$1t$1<TStr extends string, TChars extends string> = ReplaceAll$1<TSt
|
|
|
8125
8125
|
*
|
|
8126
8126
|
* **Related:** `HasCharacters`
|
|
8127
8127
|
*/
|
|
8128
|
-
type HasOtherCharacters$1<TStr extends string, TChars extends string | readonly string[]> = [IsWideType$1<TStr>] extends [true] ? boolean : [TChars] extends [string] ? IsWideType$1<TChars> extends true ? boolean : Process$
|
|
8128
|
+
type HasOtherCharacters$1<TStr extends string, TChars extends string | readonly string[]> = [IsWideType$1<TStr>] extends [true] ? boolean : [TChars] extends [string] ? IsWideType$1<TChars> extends true ? boolean : Process$1u$1<TStr, TChars> : TChars extends readonly string[] ? Process$1u$1<TStr, TupleToUnion$1<TChars>> : never;
|
|
8129
8129
|
|
|
8130
8130
|
/**
|
|
8131
8131
|
* **HasParameters**`<T>`
|
|
@@ -8365,7 +8365,7 @@ type Validations$1<T> = IsStringLiteral$1<T> extends true ? true : IsNumericLite
|
|
|
8365
8365
|
*/
|
|
8366
8366
|
type IsLiteral$1<T> = [IsUnion$1<T>] extends [true] ? false : Validations$1<T>;
|
|
8367
8367
|
|
|
8368
|
-
type Process$
|
|
8368
|
+
type Process$1r$1<T> = UnionToTuple$1$1<T> extends readonly unknown[] ? RetainLiterals$1<UnionToTuple$1$1<T>>["length"] extends UnionToTuple$1$1<T>["length"] ? true : false : never;
|
|
8369
8369
|
/**
|
|
8370
8370
|
* **IsLiteralUnion**`<T>`
|
|
8371
8371
|
*
|
|
@@ -8374,7 +8374,7 @@ type Process$1q$1<T> = UnionToTuple$1$1<T> extends readonly unknown[] ? RetainLi
|
|
|
8374
8374
|
*
|
|
8375
8375
|
* **Related:** `IsLiteralUnion`, `IsWideUnion`
|
|
8376
8376
|
*/
|
|
8377
|
-
type IsLiteralUnion$1<T> = [IsUnion$1<T>] extends [true] ? Process$
|
|
8377
|
+
type IsLiteralUnion$1<T> = [IsUnion$1<T>] extends [true] ? Process$1r$1<T> : false;
|
|
8378
8378
|
|
|
8379
8379
|
/**
|
|
8380
8380
|
* **IsNarrowingFn**`<TFn>`
|
|
@@ -8493,7 +8493,7 @@ type IsSingleChar$1<T> = T extends string ? Length$1<T> extends 1 ? true : If$1<
|
|
|
8493
8493
|
*/
|
|
8494
8494
|
type IsString$1<T> = [IsUnion$1<T>] extends [true] ? WidenUnion$1<T> extends string ? true : string extends WidenUnion$1<T> ? boolean : false : [T] extends [string] ? true : false;
|
|
8495
8495
|
|
|
8496
|
-
type Process$
|
|
8496
|
+
type Process$1o$1<T, TNever> = [IsNever$1<T>] extends [true] ? TNever : [IsEqual$1<T, true>] extends [true] ? true : false;
|
|
8497
8497
|
/**
|
|
8498
8498
|
* **IsTrue**`<T,[TNever]>`
|
|
8499
8499
|
*
|
|
@@ -8507,9 +8507,9 @@ type Process$1n$1<T, TNever> = [IsNever$1<T>] extends [true] ? TNever : [IsEqual
|
|
|
8507
8507
|
* type F2 = IsTrue<"foobar">;
|
|
8508
8508
|
* ```
|
|
8509
8509
|
*/
|
|
8510
|
-
type IsTrue$1<T, TNever = never> = Process$
|
|
8510
|
+
type IsTrue$1<T, TNever = never> = Process$1o$1<T, TNever>;
|
|
8511
8511
|
|
|
8512
|
-
type Process$
|
|
8512
|
+
type Process$1n$1<T> = [IsNever$1<T>] extends [true] ? false : T extends readonly unknown[] ? number extends T["length"] ? false : true : false;
|
|
8513
8513
|
/**
|
|
8514
8514
|
* **IsTuple**`<T>`
|
|
8515
8515
|
*
|
|
@@ -8522,7 +8522,7 @@ type Process$1m$1<T> = [IsNever$1<T>] extends [true] ? false : T extends readonl
|
|
|
8522
8522
|
* - types such as `string[]`, etc. are _not_ tuples as they
|
|
8523
8523
|
* do not discretely specify a length of elements
|
|
8524
8524
|
*/
|
|
8525
|
-
type IsTuple$1<T> = Process$
|
|
8525
|
+
type IsTuple$1<T> = Process$1n$1<T> extends boolean ? Process$1n$1<T> : never;
|
|
8526
8526
|
|
|
8527
8527
|
/**
|
|
8528
8528
|
* **IsUndefined**
|
|
@@ -8674,7 +8674,7 @@ type InvalidNever$1 = Throw$1<"invalid-never", `The value of T when calling IsWi
|
|
|
8674
8674
|
*/
|
|
8675
8675
|
type IsWideType$1<T, TNever = InvalidNever$1> = [IsNever$1<T>] extends [true] ? TNever : [T] extends [ErrorCondition$1] ? ProxyError$1<T, "IsWideType"> : IsWideScalar$1<T> extends true ? true : IsWideContainer$1<T> extends true ? true : IsWideUnion$1<T> extends true ? true : false;
|
|
8676
8676
|
|
|
8677
|
-
type Process$
|
|
8677
|
+
type Process$1m$1<T extends readonly unknown[]> = {
|
|
8678
8678
|
[K in keyof T]: IsWideType$1<T[K]> extends true ? true : Or$1<[IsUndefined$1<T[K]>, IsNull$1<T[K]>]> extends true ? true : false;
|
|
8679
8679
|
};
|
|
8680
8680
|
/**
|
|
@@ -8685,7 +8685,7 @@ type Process$1l$1<T extends readonly unknown[]> = {
|
|
|
8685
8685
|
*
|
|
8686
8686
|
* **Related:** `IsNonLiteralUnion`
|
|
8687
8687
|
*/
|
|
8688
|
-
type IsWideUnion$1<T> = [IsUnion$1<T>] extends [true] ? [Process$
|
|
8688
|
+
type IsWideUnion$1<T> = [IsUnion$1<T>] extends [true] ? [Process$1m$1<UnionToTuple$1$1<T>>] extends [readonly true[]] ? true : false : false;
|
|
8689
8689
|
|
|
8690
8690
|
type Overlap$1<TKeys extends readonly ObjectKey$1[], TComparator extends AnyObject$1> = [] extends TKeys ? false : First$1<TKeys> extends keyof TComparator ? true : Overlap$1<AfterFirst$1<TKeys>, TComparator>;
|
|
8691
8691
|
/**
|
|
@@ -8774,7 +8774,7 @@ type HasQueryParameter$1<T extends string, P extends string> = And$1<[
|
|
|
8774
8774
|
]> extends true ? GetUrlQueryParams$1<T> extends `${string}${P}=${string}` ? true : false : boolean;
|
|
8775
8775
|
|
|
8776
8776
|
type Check$1<TValue extends string, TComparator extends string | number> = TValue extends `${TComparator}${string}` ? true : false;
|
|
8777
|
-
type Process$
|
|
8777
|
+
type Process$1l$1<TValue extends string, TComparator extends string | number | readonly string[]> = TComparator extends readonly string[] ? Check$1<[
|
|
8778
8778
|
TValue
|
|
8779
8779
|
] extends [number] ? `${TValue}` : TValue, TupleToUnion$1<TComparator>> : Check$1<[
|
|
8780
8780
|
TValue
|
|
@@ -8793,9 +8793,9 @@ type Process$1k$1<TValue extends string, TComparator extends string | number | r
|
|
|
8793
8793
|
* - this can be much more type efficient for unions with lots of characters
|
|
8794
8794
|
* - if you need larger pattern matches then use a Tuple for `TComparator`
|
|
8795
8795
|
*/
|
|
8796
|
-
type StartsWith$1<TValue extends string | number, TComparator extends string | number | readonly string[]> = [IsWideType$1<TValue>] extends [true] ? boolean : [IsWideType$1<TComparator>] extends [true] ? boolean : IsEqual$1<Process$
|
|
8796
|
+
type StartsWith$1<TValue extends string | number, TComparator extends string | number | readonly string[]> = [IsWideType$1<TValue>] extends [true] ? boolean : [IsWideType$1<TComparator>] extends [true] ? boolean : IsEqual$1<Process$1l$1<AsString$1<TValue>, TComparator>, boolean> extends true ? true : Process$1l$1<AsString$1<TValue>, TComparator>;
|
|
8797
8797
|
|
|
8798
|
-
type Process$
|
|
8798
|
+
type Process$1k$1<T extends readonly unknown[]> = HasArray$1<T> extends true ? true : false;
|
|
8799
8799
|
/**
|
|
8800
8800
|
* **UnionHasArray**`<T>`
|
|
8801
8801
|
*
|
|
@@ -8805,7 +8805,7 @@ type Process$1j$1<T extends readonly unknown[]> = HasArray$1<T> extends true ? t
|
|
|
8805
8805
|
* - and that one of the elements of the union is an array
|
|
8806
8806
|
* of some sort.
|
|
8807
8807
|
*/
|
|
8808
|
-
type UnionHasArray$1<T> = IsUnion$1<T> extends true ? Process$
|
|
8808
|
+
type UnionHasArray$1<T> = IsUnion$1<T> extends true ? Process$1k$1<UnionToTuple$1$1<T>> : false;
|
|
8809
8809
|
|
|
8810
8810
|
type ShouldFail$1<TTest> = [IsNever$1<TTest>] extends [true] ? true : [IsFalse$1<TTest>] extends [true] ? true : false;
|
|
8811
8811
|
type Iterate$8$1<TTest extends readonly unknown[]> = Or$1<{
|
|
@@ -8915,8 +8915,8 @@ type Merge$1$1<TUser extends Partial<OnPassRemap$1>, TKeys extends readonly (Obj
|
|
|
8915
8915
|
false: false;
|
|
8916
8916
|
error: Constant$1<"not-set">;
|
|
8917
8917
|
}> = [] extends TKeys ? TConfig : Merge$1$1<TUser, AfterFirst$1<TKeys>, As$1<ExpandDictionary$1<Record<First$1<TKeys>, TUser[First$1<TKeys>]> & Omit<TConfig, First$1<TKeys>>>, OnPassRemap$1>>;
|
|
8918
|
-
type Process$
|
|
8919
|
-
type Iterate$7$1<TTest extends readonly unknown[], TPass, TRemap extends OnPassRemap$1<unknown, unknown, unknown>> = [] extends TTest ? TPass : Process$
|
|
8918
|
+
type Process$1i$1<TTest, TPass, TRemap extends OnPassRemap$1<unknown, unknown, unknown>> = [IsNever$1<TTest>] extends [true] ? TRemap["never"] : [IsErrorCondition$1<TTest>] extends [true] ? TRemap["error"] extends Constant$1<"not-set"> ? TTest : TRemap["error"] : [IsFalse$1<TTest>] extends [true] ? TRemap["false"] : TPass;
|
|
8919
|
+
type Iterate$7$1<TTest extends readonly unknown[], TPass, TRemap extends OnPassRemap$1<unknown, unknown, unknown>> = [] extends TTest ? TPass : Process$1i$1<First$1<TTest>, TPass, TRemap> extends TPass ? Iterate$7$1<AfterFirst$1<TTest>, TPass, TRemap> : Process$1i$1<First$1<TTest>, TPass, TRemap>;
|
|
8920
8920
|
/**
|
|
8921
8921
|
* **OnPass**`<TTest, TPass,[TRemap],[TFalse]>`
|
|
8922
8922
|
*
|
|
@@ -8930,7 +8930,7 @@ type Iterate$7$1<TTest extends readonly unknown[], TPass, TRemap extends OnPassR
|
|
|
8930
8930
|
* - the `TRemap` allows you to remap error conditions
|
|
8931
8931
|
* as well if needed
|
|
8932
8932
|
*/
|
|
8933
|
-
type OnPass$1<TTest, TPass, TRemap extends Partial<OnPassRemap$1<unknown, unknown, unknown>> = OnPassRemap$1<never, false, Constant$1<"not-set">>> = TTest extends readonly unknown[] ? Iterate$7$1<TTest, TPass, TRemap extends OnPassRemap$1<never, false, Constant$1<"not-set">> ? TRemap : Merge$1$1<TRemap, Keys$1<TRemap>>> : Process$
|
|
8933
|
+
type OnPass$1<TTest, TPass, TRemap extends Partial<OnPassRemap$1<unknown, unknown, unknown>> = OnPassRemap$1<never, false, Constant$1<"not-set">>> = TTest extends readonly unknown[] ? Iterate$7$1<TTest, TPass, TRemap extends OnPassRemap$1<never, false, Constant$1<"not-set">> ? TRemap : Merge$1$1<TRemap, Keys$1<TRemap>>> : Process$1i$1<TTest, TPass, TRemap extends OnPassRemap$1<never, false, Constant$1<"not-set">> ? TRemap : Merge$1$1<TRemap, Keys$1<TRemap>>>;
|
|
8934
8934
|
|
|
8935
8935
|
/**
|
|
8936
8936
|
* **WhenNever**`<T, [TMapTo]>`
|
|
@@ -9009,13 +9009,13 @@ type RemoveEmpty$1<T> = T extends Tuple$1 ? As$1<RemoveMarked$1<ProcessTup$1<T>>
|
|
|
9009
9009
|
|
|
9010
9010
|
type Marked$2$1 = typeof MARKED$1;
|
|
9011
9011
|
type _Keys$4$1<T extends object> = UnionToTuple$1$1<keyof RemoveIndexKeys$1<T>> extends readonly ObjectKey$1[] ? UnionToTuple$1$1<keyof RemoveIndexKeys$1<T>> : never;
|
|
9012
|
-
type Process$
|
|
9012
|
+
type Process$1g$1<T extends Container$1, TKeys extends readonly PropertyKey[], TResults extends Container$1 = T extends readonly unknown[] ? [] : EmptyObject$1> = [] extends TKeys ? TResults : First$1<TKeys> extends keyof T ? DoesExtend$1<T[First$1<TKeys>], Marked$2$1> extends true ? Process$1g$1<T, AfterFirst$1<TKeys>, TResults> : Process$1g$1<T, AfterFirst$1<TKeys>, First$1<TKeys> extends keyof T ? TResults extends readonly unknown[] ? [...TResults, T[First$1<TKeys>]] : TResults extends Dictionary$1 ? TResults & Record<First$1<TKeys>, T[First$1<TKeys>]> : never : never> : never;
|
|
9013
9013
|
/**
|
|
9014
9014
|
* **RemoveMarked**`<T>`
|
|
9015
9015
|
*
|
|
9016
9016
|
* Removes all values in `T` which extends `Constant<"Marked">`
|
|
9017
9017
|
*/
|
|
9018
|
-
type RemoveMarked$1<T extends Container$1> = Process$
|
|
9018
|
+
type RemoveMarked$1<T extends Container$1> = Process$1g$1<T, T extends Tuple$1 ? NumericKeys$1<T> : _Keys$4$1<T>>;
|
|
9019
9019
|
|
|
9020
9020
|
/**
|
|
9021
9021
|
* **RemoveIndexKeys**`<T>`
|
|
@@ -9053,7 +9053,7 @@ type _AsArray$1<T> = T extends Tuple$1 ? Mutable$1<T> : If$1<IsUndefined$1<T>, [
|
|
|
9053
9053
|
*/
|
|
9054
9054
|
type AsArray$1<T> = _AsArray$1<T> extends any[] ? _AsArray$1<T> : never;
|
|
9055
9055
|
|
|
9056
|
-
type Process$
|
|
9056
|
+
type Process$1f$1<T extends `${number}`> = If$1<IsStringLiteral$1<T>, StripLeading$1<T, "-">, string>;
|
|
9057
9057
|
/**
|
|
9058
9058
|
* **Abs**`<T>`
|
|
9059
9059
|
*
|
|
@@ -9062,7 +9062,7 @@ type Process$1e$1<T extends `${number}`> = If$1<IsStringLiteral$1<T>, StripLeadi
|
|
|
9062
9062
|
* - you can pass in a numeric string literal and it perform ABS func while
|
|
9063
9063
|
* preserving string literal type
|
|
9064
9064
|
*/
|
|
9065
|
-
type Abs$1<T extends NumberLike$1> = T extends number ? AsNumber$1<Process$
|
|
9065
|
+
type Abs$1<T extends NumberLike$1> = T extends number ? AsNumber$1<Process$1f$1<`${T}`>> : T extends `${number}` ? Process$1f$1<T> : never;
|
|
9066
9066
|
|
|
9067
9067
|
/**
|
|
9068
9068
|
* **NumericChar**
|
|
@@ -9086,13 +9086,13 @@ type GrowExp$1<A extends any[], N extends number, P extends any[][], L extends n
|
|
|
9086
9086
|
type MapItemType$1<T, I> = {
|
|
9087
9087
|
[K in keyof T]: I;
|
|
9088
9088
|
};
|
|
9089
|
-
type Process$
|
|
9089
|
+
type Process$1e$1<T, N extends number> = N extends 0 ? [] : MapItemType$1<GrowExp$1<[0], N, []>, T>;
|
|
9090
9090
|
/**
|
|
9091
9091
|
* **FixedLengthArray**`<T,N>`
|
|
9092
9092
|
*
|
|
9093
9093
|
* Creates a fixed length `<N>` array of a given type `<T>`
|
|
9094
9094
|
*/
|
|
9095
|
-
type FixedLengthArray$1<T, N extends number> = Process$
|
|
9095
|
+
type FixedLengthArray$1<T, N extends number> = Process$1e$1<T, N> extends readonly unknown[] ? Process$1e$1<T, N> : never;
|
|
9096
9096
|
|
|
9097
9097
|
/**
|
|
9098
9098
|
* **ParseInt**`<T>`
|
|
@@ -9115,7 +9115,7 @@ type ParseInt$1<T> = T extends `${infer N extends number}` ? N : never;
|
|
|
9115
9115
|
*/
|
|
9116
9116
|
type AsNumber$1<T> = T extends number ? T : T extends `${number}` ? ParseInt$1<T> : never;
|
|
9117
9117
|
|
|
9118
|
-
type Process$
|
|
9118
|
+
type Process$1d$1<TTuple extends readonly string[], TSeparator extends string, TResult extends string = ""> = [] extends TTuple ? TResult : Process$1d$1<AfterFirst$1<TTuple>, TSeparator, TResult extends "" ? First$1<TTuple> extends "" ? TResult : `${First$1<TTuple>}` : First$1<TTuple> extends "" ? TResult : `${TResult}${TSeparator}${First$1<TTuple>}`>;
|
|
9119
9119
|
type Slicer$1<TTuple extends readonly unknown[], TMax extends number | null, TEllipsis extends string | false> = TMax extends number ? TakeFirst$1<TTuple, TMax> extends readonly unknown[] ? TEllipsis extends string ? ToStringArray$1<[...TakeFirst$1<TTuple, TMax>, TEllipsis]> : ToStringArray$1<TakeFirst$1<TTuple, TMax>> : never : ToStringArray$1<TTuple>;
|
|
9120
9120
|
/**
|
|
9121
9121
|
* **Join**`<TArr,[TSeparator],[TMax]>`
|
|
@@ -9130,7 +9130,7 @@ type Slicer$1<TTuple extends readonly unknown[], TMax extends number | null, TEl
|
|
|
9130
9130
|
*
|
|
9131
9131
|
* **Related:** `Concat<TArr>`
|
|
9132
9132
|
*/
|
|
9133
|
-
type Join$1<TTuple extends readonly unknown[], TSeparator extends string = "", TMax extends number | null = null, TEllipsis extends string | false = "..."> = ToStringArray$1<TTuple> extends readonly string[] ? TMax extends number ? IsGreaterThan$1<TTuple["length"], TMax> extends true ? Process$
|
|
9133
|
+
type Join$1<TTuple extends readonly unknown[], TSeparator extends string = "", TMax extends number | null = null, TEllipsis extends string | false = "..."> = ToStringArray$1<TTuple> extends readonly string[] ? TMax extends number ? IsGreaterThan$1<TTuple["length"], TMax> extends true ? Process$1d$1<Slicer$1<TTuple, TMax, TEllipsis>, TSeparator> : Process$1d$1<ToStringArray$1<TTuple>, TSeparator> : Process$1d$1<ToStringArray$1<TTuple>, TSeparator> : never;
|
|
9134
9134
|
|
|
9135
9135
|
/**
|
|
9136
9136
|
* **AsString**<T>
|
|
@@ -9216,9 +9216,9 @@ type RightMostDigit$1<s extends string> = s extends `${infer rest}${NumericChar$
|
|
|
9216
9216
|
type SumStrings$1<left extends string, right extends string, accumulatedResultDigits extends string = "", carry extends boolean = false> = "" extends left ? "" extends right ? carry extends true ? `1${accumulatedResultDigits}` : accumulatedResultDigits : RightMostDigit$1<right> extends RightMostDigitResult$1<infer remainingRight, infer rightDigit> ? SumSingleDigits$1<"0", rightDigit, carry> extends SingleDigitSumResult$1<infer resultDigit, infer resultCarry> ? SumStrings$1<"", remainingRight, `${resultDigit}${accumulatedResultDigits}`, resultCarry> : never : never : "" extends right ? RightMostDigit$1<left> extends RightMostDigitResult$1<infer remainingLeft, infer leftDigit> ? SumSingleDigits$1<"0", leftDigit, carry> extends SingleDigitSumResult$1<infer resultDigit, infer resultCarry> ? SumStrings$1<remainingLeft, "", `${resultDigit}${accumulatedResultDigits}`, resultCarry> : never : never : RightMostDigit$1<left> extends RightMostDigitResult$1<infer remainingLeft, infer leftDigit> ? RightMostDigit$1<right> extends RightMostDigitResult$1<infer remainingRight, infer rightDigit> ? SumSingleDigits$1<leftDigit, rightDigit, carry> extends SingleDigitSumResult$1<infer resultDigit, infer resultCarry> ? SumStrings$1<remainingLeft, remainingRight, `${resultDigit}${accumulatedResultDigits}`, resultCarry> : never : never : never;
|
|
9217
9217
|
type _Subtract$1<TValue extends `${number}`, TCountArr extends readonly unknown[]> = [] extends TCountArr ? TValue : _Subtract$1<Decrement$1<TValue>, AfterFirst$1<TCountArr>>;
|
|
9218
9218
|
type AddNegatives$1<A extends `${number}`, B extends `${number}`> = SumStrings$1<A, B>;
|
|
9219
|
-
type Process$
|
|
9219
|
+
type Process$1c$1<A extends `${number}`, B extends `${number}`> = And$1<[IsNegativeNumber$1<A>, IsNegativeNumber$1<B>]> extends true ? `-${AddNegatives$1<Abs$1<A>, Abs$1<B>>}` : IsNegativeNumber$1<B> extends true ? FixedLengthArray$1<unknown, AsNumber$1<Abs$1<B>>> extends readonly unknown[] ? _Subtract$1<A, FixedLengthArray$1<unknown, AsNumber$1<Abs$1<B>>>> : never : IsNegativeNumber$1<A> extends true ? FixedLengthArray$1<unknown, AsNumber$1<Abs$1<A>>> extends readonly unknown[] ? _Subtract$1<B, FixedLengthArray$1<unknown, AsNumber$1<Abs$1<A>>>> : never : SumStrings$1<A, B>;
|
|
9220
9220
|
type CheckWide$1<A extends NumberLike$1, B extends NumberLike$1> = IsWideType$1<A> extends true ? true : IsWideType$1<B> extends true ? true : false;
|
|
9221
|
-
type PreProcess$2$1<A extends NumberLike$1, B extends NumberLike$1> = CheckWide$1<A, B> extends true ? Or$1<[IsString$1<A>, IsString$1<A>]> extends true ? string : number : Or$1<[IsWideType$1<A>, IsWideType$1<B>]> extends true ? If$1<IsString$1<A>, string, number> : A extends `${number}` ? B extends `${number}` ? As$1<Process$
|
|
9221
|
+
type PreProcess$2$1<A extends NumberLike$1, B extends NumberLike$1> = CheckWide$1<A, B> extends true ? Or$1<[IsString$1<A>, IsString$1<A>]> extends true ? string : number : Or$1<[IsWideType$1<A>, IsWideType$1<B>]> extends true ? If$1<IsString$1<A>, string, number> : A extends `${number}` ? B extends `${number}` ? As$1<Process$1c$1<A, B>, `${number}`> : As$1<Process$1c$1<A, AsString$1<B>>, `${number}`> : A extends number ? B extends number ? AsNumber$1<Process$1c$1<`${A}`, `${B}`>> : AsNumber$1<Process$1c$1<`${A}`, As$1<B, `${number}`>>> : never;
|
|
9222
9222
|
/**
|
|
9223
9223
|
* **Add**`<A,B>`
|
|
9224
9224
|
*
|
|
@@ -9413,7 +9413,7 @@ type ProxyError$1<TError extends ErrorCondition$1, TUtility extends string, TGen
|
|
|
9413
9413
|
* Iterates over each element of the Tuple
|
|
9414
9414
|
*/
|
|
9415
9415
|
type SingleFilter$3$1<TList extends readonly unknown[], TFilter, TOp extends ComparatorOperation$1, Result extends unknown[] = []> = TList extends [infer Head, ...infer Rest] ? [Compare$1$1<Head, TOp, TFilter>] extends [true] ? SingleFilter$3$1<Rest, TFilter, TOp, Result> : SingleFilter$3$1<Rest, TFilter, TOp, [...Result, Head]> : Result;
|
|
9416
|
-
type Process$
|
|
9416
|
+
type Process$19$1<TList extends unknown[] | readonly unknown[], TFilter, TOp extends ComparatorOperation$1> = TList extends unknown[] ? SingleFilter$3$1<TList, TFilter, TOp> : TList extends readonly unknown[] ? Readonly<SingleFilter$3$1<[...TList], TFilter, TOp>> : never;
|
|
9417
9417
|
/**
|
|
9418
9418
|
* **Filter**`<TList, TComparator, [TOp]>`
|
|
9419
9419
|
*
|
|
@@ -9437,7 +9437,7 @@ type Process$18$1<TList extends unknown[] | readonly unknown[], TFilter, TOp ext
|
|
|
9437
9437
|
*
|
|
9438
9438
|
* **Related:** `RetainFromList`, `RemoveFromList`
|
|
9439
9439
|
*/
|
|
9440
|
-
type Filter$1<TList extends readonly unknown[], TComparator, TOp extends ComparatorOperation$1 = "extends"> = TList extends readonly unknown[] ? IfNever$1<TComparator, RemoveNever$1<TList>, If$1<IsArray$1<TComparator>, Process$
|
|
9440
|
+
type Filter$1<TList extends readonly unknown[], TComparator, TOp extends ComparatorOperation$1 = "extends"> = TList extends readonly unknown[] ? IfNever$1<TComparator, RemoveNever$1<TList>, If$1<IsArray$1<TComparator>, Process$19$1<TList, TupleToUnion$1<TComparator>, TOp>, Process$19$1<TList, TComparator, TOp>>> : never;
|
|
9441
9441
|
|
|
9442
9442
|
/**
|
|
9443
9443
|
* Converts a Tuple type into a _union_ of the tuple elements
|
|
@@ -9470,7 +9470,13 @@ type LastInUnion$1$1<U> = UnionToIntersection$2$1<U extends unknown ? (x: U) =>
|
|
|
9470
9470
|
*/
|
|
9471
9471
|
type UnionToTuple$1$1<U, Last = LastInUnion$1$1<U>> = [U] extends [never] ? [] : [...UnionToTuple$1$1<Exclude<U, Last>>, Last];
|
|
9472
9472
|
|
|
9473
|
-
|
|
9473
|
+
/**
|
|
9474
|
+
* **AsObject<T>**
|
|
9475
|
+
*
|
|
9476
|
+
* Proxies through any ony existing object, but will also
|
|
9477
|
+
* convert a `KeyValueTuple` into an object.
|
|
9478
|
+
*/
|
|
9479
|
+
type AsObject$1<T> = T extends AnyObject$1 ? T : never;
|
|
9474
9480
|
|
|
9475
9481
|
/**
|
|
9476
9482
|
* **AsPropertyKey**`<T>`
|
|
@@ -13221,13 +13227,15 @@ type Compact$1<TSource extends AnyObject$1, TKeys extends readonly (ObjectKey$1
|
|
|
13221
13227
|
*
|
|
13222
13228
|
* Type utility to convert an object to an array of object based key-value pairs.
|
|
13223
13229
|
*
|
|
13224
|
-
* Example
|
|
13230
|
+
* **Example:**
|
|
13225
13231
|
* ```ts
|
|
13226
13232
|
* // readonly [ {key: "foo", value: 1} ]
|
|
13227
13233
|
* type T = ObjectToTuple<{ foo: 1 }>
|
|
13228
13234
|
* // readonly [ { foo: 1 } ]
|
|
13229
13235
|
* type C = ObjectToTuple< foo: 1 }, true>;
|
|
13230
13236
|
* ```
|
|
13237
|
+
*
|
|
13238
|
+
* **Related:** `ToKv`, `FromKv`
|
|
13231
13239
|
*/
|
|
13232
13240
|
type ObjectToTuple$1<TObj extends AnyObject$1, TCompact extends boolean = false> = TObj extends ExplicitlyEmptyObject$1 ? [] : IsWideContainer$1<TObj> extends true ? TCompact extends false ? KeyValue$1[] : Record<ObjectKey$1, any>[] : TCompact extends false ? Process$P$1<TObj, As$1<Keys$1<TObj>, readonly (ObjectKey$1 & keyof TObj)[]>> : Compact$1<TObj, As$1<Keys$1<TObj>, readonly (ObjectKey$1 & keyof TObj)[]>>;
|
|
13233
13241
|
|
|
@@ -15871,7 +15879,7 @@ type Process$2$1<TObj extends AnyObject$1, TKeys extends readonly (ObjectKey$1 &
|
|
|
15871
15879
|
* you can get a somewhat less strict tuple type by setting `TKeys` to `false`
|
|
15872
15880
|
* - Ok ... _now that you're sorted_ ...
|
|
15873
15881
|
*
|
|
15874
|
-
* **Related:** `KeyValue`, `FromKv`
|
|
15882
|
+
* **Related:** `KeyValue`, `FromKv`, `ObjectToTuple`, `TupleToObject`
|
|
15875
15883
|
*/
|
|
15876
15884
|
type ToKv$1<TObj extends AnyObject$1, TKeys extends (readonly (ObjectKey$1 & keyof TObj)[]) | false = As$1<Keys$1<TObj>, (readonly (ObjectKey$1 & keyof TObj)[])>> = IsObjectLiteral$1<TObj> extends true ? TKeys extends readonly (ObjectKey$1 & keyof TObj)[] ? Process$2$1<TObj, TKeys> : Array<{
|
|
15877
15885
|
[K in keyof TObj]: {
|
|
@@ -16174,6 +16182,10 @@ declare function ifChar<T extends string, IF extends Narrowable$1, ELSE extends
|
|
|
16174
16182
|
|
|
16175
16183
|
declare function ifContainer<TVal extends Narrowable$1, TIf extends Narrowable$1, TElse extends Narrowable$1>(value: TVal, ifContainer: <V extends TVal & Container$1>(val: V) => TIf, notContainer: <V extends Exclude<TVal, Container$1>>(val: V) => TElse): If$1<IsContainer$1<TVal>, TIf, TElse>;
|
|
16176
16184
|
|
|
16185
|
+
type Rtn$3<TComparator, TVal, TIf extends <T extends TComparator & TVal>(val: T) => unknown, TElse extends <T extends Exclude<TVal, TComparator>>(val: T) => unknown> = Or$1<[IsWideType$1<TComparator>, IsWideType$1<TVal>]> extends true ? ReturnType<TIf> | ReturnType<TElse> : If$1<IsEqual$1<TComparator, TVal>, ReturnType<TIf>, ReturnType<TElse>>;
|
|
16186
|
+
type IfEqualTest<TComparator> = <TVal extends Narrowable$1, TIf extends <T extends TComparator & TVal>(val: T) => unknown, TElse extends <T extends Exclude<TVal, TComparator>>(val: T) => unknown>(val: TVal, ifTrue: TIf, ifFalse: TElse) => Rtn$3<TComparator, TVal, TIf, TElse>;
|
|
16187
|
+
declare function ifEqual<TComparator extends Narrowable$1>(comparator: TComparator): IfEqualTest<TComparator>;
|
|
16188
|
+
|
|
16177
16189
|
/**
|
|
16178
16190
|
* **ifTrue**
|
|
16179
16191
|
*
|
|
@@ -16983,6 +16995,20 @@ declare function last<T extends Tuple$1>(list: T): Last$1<T>;
|
|
|
16983
16995
|
|
|
16984
16996
|
declare function logicalReturns<TConditions extends readonly (boolean | LogicFunction$1)[]>(conditions: TConditions): LogicalReturns$1<TConditions>;
|
|
16985
16997
|
|
|
16998
|
+
type MapOverObject<TObj extends AnyObject$1> = {
|
|
16999
|
+
kind: "MapOverObject";
|
|
17000
|
+
} & (<TCb extends <K extends ToKv$1<TObj>[number]>(cb: K) => unknown>(cb: TCb) => {
|
|
17001
|
+
[K in keyof TObj]: ReturnType<TCb>;
|
|
17002
|
+
});
|
|
17003
|
+
type MapOverObjectToArray<TContainer extends AnyObject$1> = {
|
|
17004
|
+
kind: "MapOverObjectToArray";
|
|
17005
|
+
} & (<K extends keyof TContainer & PropertyKey>(k: K, v: TContainer[K]) => unknown);
|
|
17006
|
+
type MapOverArray<TContainer extends readonly unknown[]> = {
|
|
17007
|
+
kind: "MapOverArray";
|
|
17008
|
+
} & (<K extends keyof TContainer & PropertyKey>(k: K, v: TContainer[K]) => unknown);
|
|
17009
|
+
type MapOver<TContainer extends AnyObject$1 | readonly unknown[], TArr extends boolean = false> = TContainer extends readonly unknown[] ? MapOverArray<TContainer> : TContainer extends AnyObject$1 ? [TArr] extends [true] ? MapOverObjectToArray<TContainer> : MapOverObject<TContainer> : never;
|
|
17010
|
+
declare function mapOver<TContainer extends NarrowObject$1<N> | AnyObject$1, N extends Narrowable$1, TArr extends boolean>(input: TContainer, toArray?: TArr): MapOver<TContainer, TArr>;
|
|
17011
|
+
|
|
16986
17012
|
/**
|
|
16987
17013
|
* **reverse**(list)
|
|
16988
17014
|
*
|
|
@@ -18279,9 +18305,7 @@ type Returns$1<T extends AnyObject$1, S extends ToKeyValueSort<SKeys$1<T>> | und
|
|
|
18279
18305
|
* const rec = toKeyValue({foo: 1, bar: 2, id: 123 }, o => o.toTop("id"));
|
|
18280
18306
|
* ```
|
|
18281
18307
|
*/
|
|
18282
|
-
declare function toKeyValue<T extends
|
|
18283
|
-
[key: string]: N;
|
|
18284
|
-
}, N extends Narrowable$1, S extends ToKeyValueSort<SKeys$1<T>> | undefined>(obj: T, sort?: S): Returns$1<T, S>;
|
|
18308
|
+
declare function toKeyValue<T extends NarrowObject$1<N> | AnyObject$1, N extends Narrowable$1, S extends ToKeyValueSort<SKeys$1<T>> | undefined>(obj: T, sort?: S): Returns$1<T, S>;
|
|
18285
18309
|
|
|
18286
18310
|
/**
|
|
18287
18311
|
* **toNumber**(value)
|
|
@@ -18601,7 +18625,7 @@ declare function hasIndexOf<TContainer extends Container$1, TIndex extends Prope
|
|
|
18601
18625
|
* properties passed into this first call.
|
|
18602
18626
|
*
|
|
18603
18627
|
* ```ts
|
|
18604
|
-
* const hasFooBar = hasKeys(
|
|
18628
|
+
* const hasFooBar = hasKeys("foo", "bar"); // type guard
|
|
18605
18629
|
* const hasFooBarToo = hasKeys({foo: 1, bar: 1});
|
|
18606
18630
|
* ```
|
|
18607
18631
|
*/
|
|
@@ -19033,6 +19057,11 @@ declare function isObject(value: unknown): value is Dictionary$1;
|
|
|
19033
19057
|
*/
|
|
19034
19058
|
declare function isNarrowableObject(value: unknown): value is Dictionary$1<ObjectKey$1, Narrowable$1>;
|
|
19035
19059
|
|
|
19060
|
+
/**
|
|
19061
|
+
* Type guard which validates that `val` is a valid `ObjectKey`
|
|
19062
|
+
*/
|
|
19063
|
+
declare function isObjectKey(val: unknown): val is ObjectKey$1;
|
|
19064
|
+
|
|
19036
19065
|
/**
|
|
19037
19066
|
* **maybePhoneNumber**`(val)`
|
|
19038
19067
|
*
|
|
@@ -24501,23 +24530,23 @@ type ValidChars<T extends readonly string[]> = [] extends T ? true : First<T> ex
|
|
|
24501
24530
|
*/
|
|
24502
24531
|
type IsVariable<T extends string> = T extends Variable ? ValidChars<Chars<T>> extends true ? true : false : false;
|
|
24503
24532
|
|
|
24504
|
-
type Process$
|
|
24533
|
+
type Process$1B<TVal, TDefault> = TVal extends Something ? TVal : TDefault;
|
|
24505
24534
|
/**
|
|
24506
24535
|
* **Default**`<TVal,TDefault,[TProtect]>`
|
|
24507
24536
|
*
|
|
24508
24537
|
* Branching operator which allows giving a value `TVal` a _default value_ when
|
|
24509
24538
|
* it's value is either `null` or `undefined`.
|
|
24510
24539
|
*/
|
|
24511
|
-
type Default<TVal, TDefault> = Process$
|
|
24540
|
+
type Default<TVal, TDefault> = Process$1B<TVal, TDefault>;
|
|
24512
24541
|
|
|
24513
|
-
type Process$
|
|
24542
|
+
type Process$1A<TConditions extends readonly boolean[], TBooleanSeen extends boolean> = [] extends TConditions ? IfEqual<TBooleanSeen, true, boolean, true> : [First<TConditions>] extends [false] ? false : Process$1A<AfterFirst<TConditions>, TBooleanSeen>;
|
|
24514
24543
|
/**
|
|
24515
24544
|
* **And**`<TConditions, [TEmpty]>`
|
|
24516
24545
|
*
|
|
24517
24546
|
* Allows an array of conditions which are either ARE a boolean value or a
|
|
24518
24547
|
* function which evaluates to a boolean value to be logically AND'd together.
|
|
24519
24548
|
*/
|
|
24520
|
-
type And<TConditions, TEmpty extends boolean = false> = TConditions extends readonly (boolean | LogicFunction)[] ? IsEqual<TConditions, []> extends true ? TEmpty : LogicalReturns<TConditions> extends readonly boolean[] ? Process$
|
|
24549
|
+
type And<TConditions, TEmpty extends boolean = false> = TConditions extends readonly (boolean | LogicFunction)[] ? IsEqual<TConditions, []> extends true ? TEmpty : LogicalReturns<TConditions> extends readonly boolean[] ? Process$1A<LogicalReturns<TConditions>, NarrowlyContains<LogicalReturns<TConditions>, boolean>> : never : never;
|
|
24521
24550
|
|
|
24522
24551
|
/**
|
|
24523
24552
|
* comparison operators which require the base type to be a string
|
|
@@ -24562,14 +24591,14 @@ type Comparison<TOp extends ComparatorOperation = ComparatorOperation, TArgs ext
|
|
|
24562
24591
|
fn: TFn;
|
|
24563
24592
|
} : ErrorCondition<"invalid-comparison">;
|
|
24564
24593
|
type Unionize<T> = T extends readonly unknown[] ? TupleToUnion<T> : T;
|
|
24565
|
-
type Process$
|
|
24594
|
+
type Process$1z<TVal, TOp extends ComparatorOperation, TComparator> = TOp extends "extends" ? DoesExtend<TVal, Unionize<TComparator>> : TOp extends "equals" ? IsEqual<TVal, Unionize<TComparator>> : TOp extends "contains" ? [TVal] extends [string | number | Tuple] ? Contains<TVal, TComparator> : never : TOp extends "containsAll" ? [TVal] extends [Tuple] ? [TComparator] extends [string | number | readonly string[]] ? Contains<TVal, TComparator> : never : never : TOp extends "startsWith" ? [TVal] extends [string | number] ? [TComparator] extends [string | number | readonly string[]] ? StartsWith<TVal, TComparator> : never : never : TOp extends "greaterThan" ? And<[Extends<TComparator, NumberLike>, Extends<TVal, NumberLike>]> extends true ? IsGreaterThan<As<TVal, NumberLike>, As<TComparator, NumberLike>> : never : TOp extends "greaterThanOrEqual" ? And<[Extends<TComparator, NumberLike>, Extends<TVal, NumberLike>]> extends true ? IsGreaterThanOrEqual<As<TVal, NumberLike>, As<TComparator, NumberLike>> : never : TOp extends "lessThan" ? And<[Extends<TComparator, NumberLike>, Extends<TVal, NumberLike>]> extends true ? IsLessThan<As<TVal, NumberLike>, As<TComparator, NumberLike>> : never : TOp extends "lessThanOrEqual" ? And<[Extends<TComparator, NumberLike>, Extends<TVal, NumberLike>]> extends true ? IsLessThanOrEqual<As<TVal, NumberLike>, As<TComparator, NumberLike>> : never : TOp extends "endsWith" ? [TVal] extends [string | number] ? [TComparator] extends [string | number | readonly string[]] ? EndsWith<TVal, TComparator> : never : never : TOp extends "returnEquals" ? TVal extends ((...args: any[]) => any) ? IsEqual<ReturnType<TVal>, TComparator> : false : TOp extends "returnExtends" ? TVal extends ((...args: any[]) => any) ? IsEqual<ReturnType<TVal>, TComparator> : false : never;
|
|
24566
24595
|
/**
|
|
24567
24596
|
* **Compare**`<TVal,TOp,TComparator>`
|
|
24568
24597
|
*
|
|
24569
24598
|
* Compares the value `TVal` with `TComparator` using
|
|
24570
24599
|
* the `TOp` _operator_.
|
|
24571
24600
|
*/
|
|
24572
|
-
type Compare$1<TVal, TOp extends ComparatorOperation, TComparator> = WhenNever<Process$
|
|
24601
|
+
type Compare$1<TVal, TOp extends ComparatorOperation, TComparator> = WhenNever<Process$1z<TVal, TOp, TComparator>>;
|
|
24573
24602
|
|
|
24574
24603
|
type Negate<TVal> = IsNever<TVal> extends true ? never : [TVal] extends [boolean] ? IsTrue<TVal> extends true ? false : IsFalse<TVal> extends true ? true : boolean : [TVal] extends [LogicFunction] ? Negate<ReturnType<LogicFunction>> : never;
|
|
24575
24604
|
type NegateTuple<TTuple extends readonly (boolean | LogicFunction)[], TResults extends readonly (boolean | LogicFunction)[] = []> = [] extends TTuple ? IsEqual<TResults, [], false, TResults> : NegateTuple<AfterFirst<TTuple>, [
|
|
@@ -24591,7 +24620,7 @@ type NegateTuple<TTuple extends readonly (boolean | LogicFunction)[], TResults e
|
|
|
24591
24620
|
*/
|
|
24592
24621
|
type Not<TVal, TNotBoolean extends boolean = false> = [TVal] extends [boolean] ? Exclude<As<Negate<TVal>, boolean>, any[]> : [TVal] extends [LogicFunction] ? As<Negate<ReturnType<TVal>>, boolean> : [TVal] extends [readonly (LogicFunction | boolean)[]] ? As<NegateTuple<TVal>, readonly boolean[]> : TNotBoolean;
|
|
24593
24622
|
|
|
24594
|
-
type Process$
|
|
24623
|
+
type Process$1y<TConditions extends readonly boolean[], TBooleanSean extends boolean> = NarrowlyContains<TConditions, true> extends true ? true : [IsEqual<TBooleanSean, true>] extends [true] ? boolean : false;
|
|
24595
24624
|
type ConditionError<TErr> = TErr extends ErrorCondition ? ProxyError<TErr, "Or", "TConditions"> : never;
|
|
24596
24625
|
/**
|
|
24597
24626
|
* **Or**`<TConditions, [TEmpty]>`
|
|
@@ -24604,16 +24633,16 @@ type ConditionError<TErr> = TErr extends ErrorCondition ? ProxyError<TErr, "Or",
|
|
|
24604
24633
|
*
|
|
24605
24634
|
* **Related:** `And`
|
|
24606
24635
|
*/
|
|
24607
|
-
type Or<TConditions, TEmpty extends boolean = false> = IsNever<TConditions> extends true ? Throw<"invalid-never", `Or<TConditions> received "never" for it's conditions!`, "Or"> : IsEqual<TConditions, []> extends true ? TEmpty : TConditions extends readonly (boolean | LogicFunction)[] ? LogicalReturns<TConditions> extends readonly boolean[] ? Process$
|
|
24636
|
+
type Or<TConditions, TEmpty extends boolean = false> = IsNever<TConditions> extends true ? Throw<"invalid-never", `Or<TConditions> received "never" for it's conditions!`, "Or"> : IsEqual<TConditions, []> extends true ? TEmpty : TConditions extends readonly (boolean | LogicFunction)[] ? LogicalReturns<TConditions> extends readonly boolean[] ? Process$1y<LogicalReturns<TConditions>, NarrowlyContains<LogicalReturns<TConditions>, boolean>> : never : IsErrorCondition<TConditions> extends true ? ConditionError<TConditions> : Throw<"invalid-conditions", `The conditions passed to Or<TConditions> were invalid!`, "Or", {
|
|
24608
24637
|
library: "inferred-types/constants";
|
|
24609
24638
|
value: TConditions;
|
|
24610
24639
|
}>;
|
|
24611
24640
|
|
|
24612
|
-
type Process$
|
|
24641
|
+
type Process$1x<TElements extends readonly unknown[], TOp extends ComparatorOperation, TComparator> = [] extends TElements ? false : [WhenNever<Compare$1<First<TElements>, TOp, TComparator>>] extends [true] ? true : Process$1x<AfterFirst<TElements>, TOp, TComparator>;
|
|
24613
24642
|
type Some<TContainer extends Container, TOp extends "extends" | "equals" | "startsWith" | "endsWith" | "lessThan" | "greaterThan", TComparator extends Or<[
|
|
24614
24643
|
IsEqual<TOp, "startsWith">,
|
|
24615
24644
|
IsEqual<TOp, "endsWith">
|
|
24616
|
-
]> extends true ? string : Or<[IsEqual<TOp, "lessThan">, IsEqual<TOp, "greaterThan">]> extends true ? NumberLike : unknown> = TContainer extends readonly unknown[] ? Process$
|
|
24645
|
+
]> extends true ? string : Or<[IsEqual<TOp, "lessThan">, IsEqual<TOp, "greaterThan">]> extends true ? NumberLike : unknown> = TContainer extends readonly unknown[] ? Process$1x<TContainer, TOp, TComparator> : TContainer extends Dictionary ? Process$1x<Values<TContainer>, TOp, TComparator> : never;
|
|
24617
24646
|
|
|
24618
24647
|
type AllAcc<TList extends readonly unknown[], TExtend> = [] extends TList ? true : If<Extends<First<TList>, TExtend>, AllAcc<AfterFirst<TList>, TExtend>, false>;
|
|
24619
24648
|
/**
|
|
@@ -24838,11 +24867,11 @@ type DoesExtend<TValue, TExtends> = IsNever<TValue> extends true ? false : [TVal
|
|
|
24838
24867
|
type DoesNotExtend<TValue, TNotExtends> = TValue extends TNotExtends ? false : true;
|
|
24839
24868
|
|
|
24840
24869
|
type Test$1<TValue extends string, TComparator extends string> = TValue extends `${string}${TComparator}` ? true : false;
|
|
24841
|
-
type Process$
|
|
24870
|
+
type Process$1w<TValue extends string, TComparator extends string> = IsStringLiteral<TComparator> extends true ? IsStringLiteral<TValue> extends true ? Test$1<TValue, TComparator> : boolean : boolean;
|
|
24842
24871
|
type ProcessEach$1<TValue extends string, TComparator extends readonly string[]> = Or<{
|
|
24843
|
-
[K in keyof TComparator]: Process$
|
|
24872
|
+
[K in keyof TComparator]: Process$1w<TValue, TComparator[K]>;
|
|
24844
24873
|
}>;
|
|
24845
|
-
type PreProcess$4<TValue extends string, TComparator extends string | readonly string[]> = TComparator extends readonly string[] ? ProcessEach$1<TValue, TComparator> : TComparator extends string ? Process$
|
|
24874
|
+
type PreProcess$4<TValue extends string, TComparator extends string | readonly string[]> = TComparator extends readonly string[] ? ProcessEach$1<TValue, TComparator> : TComparator extends string ? Process$1w<TValue, TComparator> : never;
|
|
24846
24875
|
/**
|
|
24847
24876
|
* **EndsWith**<TValue, TComparator>
|
|
24848
24877
|
*
|
|
@@ -24917,13 +24946,13 @@ type _HasArray<TList extends readonly unknown[]> = [] extends TList ? false : Is
|
|
|
24917
24946
|
*/
|
|
24918
24947
|
type HasArray<TList extends readonly unknown[]> = _HasArray<TList>;
|
|
24919
24948
|
|
|
24920
|
-
type Process$
|
|
24949
|
+
type Process$1v<TStr extends string, TChars extends string, _TOp extends "any" | "all"> = TStr extends `${string}${TChars}${string}` ? true : false;
|
|
24921
24950
|
type ProcessTuple$4<TStr extends string, TChars extends readonly string[], TOp extends "any" | "all"> = TOp extends "any" ? Or<{
|
|
24922
24951
|
[K in keyof TChars]: TStr extends `${string}${TChars[K]}${string}` ? true : false;
|
|
24923
24952
|
}> : And<{
|
|
24924
24953
|
[K in keyof TChars]: TStr extends `${string}${TChars[K]}${string}` ? true : false;
|
|
24925
24954
|
}>;
|
|
24926
|
-
type PreProcess$3<TStr extends string, TChars extends string, TOp extends "any" | "all"> = IsUnion<TChars> extends true ? UnionToTuple$1<TChars> extends readonly string[] ? ProcessTuple$4<TStr, UnionToTuple$1<TChars>, TOp> : never : Process$
|
|
24955
|
+
type PreProcess$3<TStr extends string, TChars extends string, TOp extends "any" | "all"> = IsUnion<TChars> extends true ? UnionToTuple$1<TChars> extends readonly string[] ? ProcessTuple$4<TStr, UnionToTuple$1<TChars>, TOp> : never : Process$1v<TStr, TChars, TOp>;
|
|
24927
24956
|
/**
|
|
24928
24957
|
* **HasCharacters**`<TStr,TChars>`
|
|
24929
24958
|
*
|
|
@@ -24945,7 +24974,7 @@ type HasCharacters<TStr extends string, TChars extends string | readonly string[
|
|
|
24945
24974
|
*/
|
|
24946
24975
|
type HasIndex<TContainer, TIdx extends PropertyKey> = TContainer extends Container ? TIdx extends keyof TContainer ? true : false : false;
|
|
24947
24976
|
|
|
24948
|
-
type Process$
|
|
24977
|
+
type Process$1u<TStr extends string, TChars extends string> = ReplaceAll<TStr, TChars, ""> extends "" ? false : true;
|
|
24949
24978
|
/**
|
|
24950
24979
|
* **HasOtherCharacters**`<TStr,TChars>`
|
|
24951
24980
|
*
|
|
@@ -24957,7 +24986,7 @@ type Process$1t<TStr extends string, TChars extends string> = ReplaceAll<TStr, T
|
|
|
24957
24986
|
*
|
|
24958
24987
|
* **Related:** `HasCharacters`
|
|
24959
24988
|
*/
|
|
24960
|
-
type HasOtherCharacters<TStr extends string, TChars extends string | readonly string[]> = [IsWideType<TStr>] extends [true] ? boolean : [TChars] extends [string] ? IsWideType<TChars> extends true ? boolean : Process$
|
|
24989
|
+
type HasOtherCharacters<TStr extends string, TChars extends string | readonly string[]> = [IsWideType<TStr>] extends [true] ? boolean : [TChars] extends [string] ? IsWideType<TChars> extends true ? boolean : Process$1u<TStr, TChars> : TChars extends readonly string[] ? Process$1u<TStr, TupleToUnion<TChars>> : never;
|
|
24961
24990
|
|
|
24962
24991
|
/**
|
|
24963
24992
|
* **HasParameters**`<T>`
|
|
@@ -24991,7 +25020,7 @@ type HasProp<TTest, TProp extends string, TIf = true, TElse = false> = TTest ext
|
|
|
24991
25020
|
*/
|
|
24992
25021
|
type HasRequiredProps<T extends AnyObject> = IsWideContainer<T> extends true ? IsEqual<T, EmptyObject> extends true ? false : boolean : RequiredKeysTuple<T> extends readonly ObjectKey[] ? RequiredKeysTuple<T>["length"] extends 0 ? false : true : false;
|
|
24993
25022
|
|
|
24994
|
-
type Process$
|
|
25023
|
+
type Process$1t<A extends readonly unknown[], B extends readonly unknown[]> = And<{
|
|
24995
25024
|
[K in keyof A]: K extends keyof B ? true : false;
|
|
24996
25025
|
}>;
|
|
24997
25026
|
type _Keys$8<T extends object> = UnionToTuple$1<keyof RemoveIndexKeys<T>> extends readonly ObjectKey[] ? UnionToTuple$1<keyof RemoveIndexKeys<T>> : never;
|
|
@@ -25000,7 +25029,7 @@ type _Keys$8<T extends object> = UnionToTuple$1<keyof RemoveIndexKeys<T>> extend
|
|
|
25000
25029
|
*
|
|
25001
25030
|
* Boolean operator which compares two lists to see if they have the same keys.
|
|
25002
25031
|
*/
|
|
25003
|
-
type HasSameKeys<A extends Container, B extends Container> = IsTuple<A> extends true ? IsTuple<B> extends true ? AsTuple<A>["length"] extends AsTuple<B>["length"] ? Process$
|
|
25032
|
+
type HasSameKeys<A extends Container, B extends Container> = IsTuple<A> extends true ? IsTuple<B> extends true ? AsTuple<A>["length"] extends AsTuple<B>["length"] ? Process$1t<AsTuple<A>, AsTuple<B>> : false : false : DoesExtend<A, object> extends true ? DoesExtend<B, object> extends true ? _Keys$8<A>["length"] extends _Keys$8<B>["length"] ? HasSameValues<_Keys$8<A>, _Keys$8<B>> : false : false : false;
|
|
25004
25033
|
|
|
25005
25034
|
type Find$1<TList extends readonly unknown[], TComparator> = Or<{
|
|
25006
25035
|
[K in keyof TList]: [TList[K]] extends [TComparator] ? true : false;
|
|
@@ -25008,8 +25037,8 @@ type Find$1<TList extends readonly unknown[], TComparator> = Or<{
|
|
|
25008
25037
|
type Compare<TList extends readonly unknown[], TComparator extends readonly unknown[]> = And<{
|
|
25009
25038
|
[K in keyof TList]: Find$1<TComparator, TList[K]> extends boolean ? Find$1<TComparator, TList[K]> : never;
|
|
25010
25039
|
}, true>;
|
|
25011
|
-
type Process$
|
|
25012
|
-
type _HasSameValues<TContainer extends readonly unknown[], TComparator extends readonly unknown[]> = TContainer extends readonly unknown[] ? Process$
|
|
25040
|
+
type Process$1s<TList extends readonly unknown[], TComparator extends readonly unknown[]> = TList["length"] extends TComparator["length"] ? Compare<TList, TComparator> : false;
|
|
25041
|
+
type _HasSameValues<TContainer extends readonly unknown[], TComparator extends readonly unknown[]> = TContainer extends readonly unknown[] ? Process$1s<TContainer, TComparator> : TContainer extends Dictionary ? Process$1s<Values<TContainer>, TComparator> : never;
|
|
25013
25042
|
/**
|
|
25014
25043
|
* **HasSameValues**`<TContainer,TComparator>`
|
|
25015
25044
|
*
|
|
@@ -25370,7 +25399,7 @@ type RegularFn<Fn> = Fn extends ((...args: any[]) => any) ? (...args: Parameters
|
|
|
25370
25399
|
*/
|
|
25371
25400
|
type IsLiteralFn<TFn> = TFn extends AnyFunction ? IsEqual<RegularFn<TFn>, TFn> : false;
|
|
25372
25401
|
|
|
25373
|
-
type Process$
|
|
25402
|
+
type Process$1r<T> = UnionToTuple$1<T> extends readonly unknown[] ? RetainLiterals<UnionToTuple$1<T>>["length"] extends UnionToTuple$1<T>["length"] ? true : false : never;
|
|
25374
25403
|
/**
|
|
25375
25404
|
* **IsLiteralUnion**`<T>`
|
|
25376
25405
|
*
|
|
@@ -25379,7 +25408,7 @@ type Process$1q<T> = UnionToTuple$1<T> extends readonly unknown[] ? RetainLitera
|
|
|
25379
25408
|
*
|
|
25380
25409
|
* **Related:** `IsLiteralUnion`, `IsWideUnion`
|
|
25381
25410
|
*/
|
|
25382
|
-
type IsLiteralUnion<T> = [IsUnion<T>] extends [true] ? Process$
|
|
25411
|
+
type IsLiteralUnion<T> = [IsUnion<T>] extends [true] ? Process$1r<T> : false;
|
|
25383
25412
|
|
|
25384
25413
|
/**
|
|
25385
25414
|
* **IsNarrowingFn**`<TFn>`
|
|
@@ -25401,7 +25430,7 @@ type IsNarrowingFn<TFn> = TFn extends AnyFunction ? Not<IsEqual<LiteralFn<TFn>,
|
|
|
25401
25430
|
*/
|
|
25402
25431
|
type IsNegativeNumber<T extends NumberLike> = IsWideType<T> extends true ? boolean : IsEqual<T, NumberLike> extends true ? boolean : AsString<T> extends `-${number}` ? true : false;
|
|
25403
25432
|
|
|
25404
|
-
type Process$
|
|
25433
|
+
type Process$1q<T> = UnionToTuple$1<T> extends readonly unknown[] ? RetainLiterals<UnionToTuple$1<T>>["length"] extends UnionToTuple$1<T>["length"] ? false : true : never;
|
|
25405
25434
|
/**
|
|
25406
25435
|
* **IsNonLiteralUnion**`<T>`
|
|
25407
25436
|
*
|
|
@@ -25410,7 +25439,7 @@ type Process$1p<T> = UnionToTuple$1<T> extends readonly unknown[] ? RetainLitera
|
|
|
25410
25439
|
*
|
|
25411
25440
|
* **Related:** `IsLiteralUnion`, `IsWideUnion`
|
|
25412
25441
|
*/
|
|
25413
|
-
type IsNonLiteralUnion<T> = If<IsUnion<T>, Process$
|
|
25442
|
+
type IsNonLiteralUnion<T> = If<IsUnion<T>, Process$1q<T>, false>;
|
|
25414
25443
|
|
|
25415
25444
|
/**
|
|
25416
25445
|
* **NotEqual**`<X,Y>`
|
|
@@ -25502,7 +25531,7 @@ type IsOptional<T> = IsUnion<T> extends true ? Contains<UnionToTuple$1<T>, undef
|
|
|
25502
25531
|
*/
|
|
25503
25532
|
type IsRequired<T> = Not<IsOptional<T>>;
|
|
25504
25533
|
|
|
25505
|
-
type Process$
|
|
25534
|
+
type Process$1p<T> = [IsNever<T>] extends [true] ? false : [IsScalar<T>] extends [true] ? true : [IsUndefined<T>] extends [true] ? true : [IsUnion<T>] extends [true] ? boolean : false;
|
|
25506
25535
|
/**
|
|
25507
25536
|
* **IsOptionalScalar**`<T>`
|
|
25508
25537
|
*
|
|
@@ -25510,7 +25539,7 @@ type Process$1o<T> = [IsNever<T>] extends [true] ? false : [IsScalar<T>] extends
|
|
|
25510
25539
|
*
|
|
25511
25540
|
* **Related:** `IsScalar`
|
|
25512
25541
|
*/
|
|
25513
|
-
type IsOptionalScalar<T> = Process$
|
|
25542
|
+
type IsOptionalScalar<T> = Process$1p<T> extends boolean ? Process$1p<T> : never;
|
|
25514
25543
|
|
|
25515
25544
|
/**
|
|
25516
25545
|
* **IsPositiveNumber**`<T>`
|
|
@@ -25600,7 +25629,7 @@ type IsStrictPromise<T> = T extends {
|
|
|
25600
25629
|
finally?: (onfinally?: () => void) => any;
|
|
25601
25630
|
} ? true : false;
|
|
25602
25631
|
|
|
25603
|
-
type Process$
|
|
25632
|
+
type Process$1o<T, TNever> = [IsNever<T>] extends [true] ? TNever : [IsEqual<T, true>] extends [true] ? true : false;
|
|
25604
25633
|
/**
|
|
25605
25634
|
* **IsTrue**`<T,[TNever]>`
|
|
25606
25635
|
*
|
|
@@ -25614,7 +25643,7 @@ type Process$1n<T, TNever> = [IsNever<T>] extends [true] ? TNever : [IsEqual<T,
|
|
|
25614
25643
|
* type F2 = IsTrue<"foobar">;
|
|
25615
25644
|
* ```
|
|
25616
25645
|
*/
|
|
25617
|
-
type IsTrue<T, TNever = never> = Process$
|
|
25646
|
+
type IsTrue<T, TNever = never> = Process$1o<T, TNever>;
|
|
25618
25647
|
|
|
25619
25648
|
/**
|
|
25620
25649
|
* **IsTruthy**`<T>`
|
|
@@ -25628,7 +25657,7 @@ type IsTruthy<T> = [
|
|
|
25628
25657
|
T
|
|
25629
25658
|
] extends [string] ? T extends "" ? false : If<IsStringLiteral<T>, true, boolean> : [T] extends [number] ? If<IsNumericLiteral<T>, If<SomeEqual<[0, -0], T>, false, true>, boolean> : [T] extends [boolean] ? If<IsFalse<T>, false, If<IsTrue<T>, true, boolean>> : If<SomeEqual<[null, undefined, typeof Number.NaN], T>, false, boolean>;
|
|
25630
25659
|
|
|
25631
|
-
type Process$
|
|
25660
|
+
type Process$1n<T> = [IsNever<T>] extends [true] ? false : T extends readonly unknown[] ? number extends T["length"] ? false : true : false;
|
|
25632
25661
|
/**
|
|
25633
25662
|
* **IsTuple**`<T>`
|
|
25634
25663
|
*
|
|
@@ -25641,7 +25670,7 @@ type Process$1m<T> = [IsNever<T>] extends [true] ? false : T extends readonly un
|
|
|
25641
25670
|
* - types such as `string[]`, etc. are _not_ tuples as they
|
|
25642
25671
|
* do not discretely specify a length of elements
|
|
25643
25672
|
*/
|
|
25644
|
-
type IsTuple<T> = Process$
|
|
25673
|
+
type IsTuple<T> = Process$1n<T> extends boolean ? Process$1n<T> : never;
|
|
25645
25674
|
|
|
25646
25675
|
/**
|
|
25647
25676
|
* **IsUndefined**
|
|
@@ -25802,7 +25831,7 @@ type InvalidNever = Throw<"invalid-never", `The value of T when calling IsWideTy
|
|
|
25802
25831
|
*/
|
|
25803
25832
|
type IsWideType<T, TNever = InvalidNever> = [IsNever<T>] extends [true] ? TNever : [T] extends [ErrorCondition] ? ProxyError<T, "IsWideType"> : IsWideScalar<T> extends true ? true : IsWideContainer<T> extends true ? true : IsWideUnion<T> extends true ? true : false;
|
|
25804
25833
|
|
|
25805
|
-
type Process$
|
|
25834
|
+
type Process$1m<T extends readonly unknown[]> = {
|
|
25806
25835
|
[K in keyof T]: IsWideType<T[K]> extends true ? true : Or<[IsUndefined<T[K]>, IsNull<T[K]>]> extends true ? true : false;
|
|
25807
25836
|
};
|
|
25808
25837
|
/**
|
|
@@ -25813,7 +25842,7 @@ type Process$1l<T extends readonly unknown[]> = {
|
|
|
25813
25842
|
*
|
|
25814
25843
|
* **Related:** `IsNonLiteralUnion`
|
|
25815
25844
|
*/
|
|
25816
|
-
type IsWideUnion<T> = [IsUnion<T>] extends [true] ? [Process$
|
|
25845
|
+
type IsWideUnion<T> = [IsUnion<T>] extends [true] ? [Process$1m<UnionToTuple$1<T>>] extends [readonly true[]] ? true : false : false;
|
|
25817
25846
|
|
|
25818
25847
|
type Overlap<TKeys extends readonly ObjectKey[], TComparator extends AnyObject> = [] extends TKeys ? false : First<TKeys> extends keyof TComparator ? true : Overlap<AfterFirst<TKeys>, TComparator>;
|
|
25819
25848
|
/**
|
|
@@ -26021,7 +26050,7 @@ type SomeAcc<TList extends readonly unknown[], TExtend> = [] extends TList ? fal
|
|
|
26021
26050
|
type SomeExtend<TList extends readonly unknown[], TExtend> = SomeAcc<TList, TExtend>;
|
|
26022
26051
|
|
|
26023
26052
|
type Check<TValue extends string, TComparator extends string | number> = TValue extends `${TComparator}${string}` ? true : false;
|
|
26024
|
-
type Process$
|
|
26053
|
+
type Process$1l<TValue extends string, TComparator extends string | number | readonly string[]> = TComparator extends readonly string[] ? Check<[
|
|
26025
26054
|
TValue
|
|
26026
26055
|
] extends [number] ? `${TValue}` : TValue, TupleToUnion<TComparator>> : Check<[
|
|
26027
26056
|
TValue
|
|
@@ -26040,9 +26069,9 @@ type Process$1k<TValue extends string, TComparator extends string | number | rea
|
|
|
26040
26069
|
* - this can be much more type efficient for unions with lots of characters
|
|
26041
26070
|
* - if you need larger pattern matches then use a Tuple for `TComparator`
|
|
26042
26071
|
*/
|
|
26043
|
-
type StartsWith<TValue extends string | number, TComparator extends string | number | readonly string[]> = [IsWideType<TValue>] extends [true] ? boolean : [IsWideType<TComparator>] extends [true] ? boolean : IsEqual<Process$
|
|
26072
|
+
type StartsWith<TValue extends string | number, TComparator extends string | number | readonly string[]> = [IsWideType<TValue>] extends [true] ? boolean : [IsWideType<TComparator>] extends [true] ? boolean : IsEqual<Process$1l<AsString<TValue>, TComparator>, boolean> extends true ? true : Process$1l<AsString<TValue>, TComparator>;
|
|
26044
26073
|
|
|
26045
|
-
type Process$
|
|
26074
|
+
type Process$1k<T extends readonly unknown[]> = HasArray<T> extends true ? true : false;
|
|
26046
26075
|
/**
|
|
26047
26076
|
* **UnionHasArray**`<T>`
|
|
26048
26077
|
*
|
|
@@ -26052,7 +26081,7 @@ type Process$1j<T extends readonly unknown[]> = HasArray<T> extends true ? true
|
|
|
26052
26081
|
* - and that one of the elements of the union is an array
|
|
26053
26082
|
* of some sort.
|
|
26054
26083
|
*/
|
|
26055
|
-
type UnionHasArray<T> = IsUnion<T> extends true ? Process$
|
|
26084
|
+
type UnionHasArray<T> = IsUnion<T> extends true ? Process$1k<UnionToTuple$1<T>> : false;
|
|
26056
26085
|
|
|
26057
26086
|
type WideBooleanNotAllowed = ErrorCondition<"wide-boolean-not-allowed", `Call to Validate<T,E> received a wide boolean type for T!`>;
|
|
26058
26087
|
type WideReturnNotAllowed<T> = ErrorCondition<"wide-return-not-allowed", `Call to Validate<T,E> returned a wide type: ${AsString<T>}!`>;
|
|
@@ -26158,7 +26187,7 @@ type IfEquals<X, Y, IF = X & Y, ELSE = Exclude<X, Y>> = IfEqual<X, Y, IF, ELSE>;
|
|
|
26158
26187
|
type IfErrorCondition<T, IF, ELSE = T> = IsErrorCondition<T> extends true ? T extends ErrorConditionShape ? IF : never : ELSE;
|
|
26159
26188
|
|
|
26160
26189
|
type ProcessContainers<TValues extends readonly (Container | TIgnore)[], TIgnore, TOffset extends PropertyKey | null, TNotFound> = [] extends TValues ? TNotFound : IndexOf<First<TValues>, TOffset, TIgnore> extends TIgnore ? ProcessContainers<AfterFirst<TValues>, TIgnore, TOffset, TNotFound> : IndexOf<First<TValues>, TOffset>;
|
|
26161
|
-
type Process$
|
|
26190
|
+
type Process$1j<TValues extends readonly unknown[], TIgnore, TNotFound> = [] extends TValues ? TNotFound : First<TValues> extends TIgnore ? Process$1j<AfterFirst<TValues>, TIgnore, TNotFound> : First<TValues>;
|
|
26162
26191
|
/**
|
|
26163
26192
|
* **Iff**`<TValues,[TIgnore],[TOffset],[TNotFound]>`
|
|
26164
26193
|
*
|
|
@@ -26177,7 +26206,7 @@ type Iff<TValues extends NonArray | readonly unknown[], TIgnore = Nothing, TOffs
|
|
|
26177
26206
|
library: "inferred-types/constants";
|
|
26178
26207
|
values: AsArray<TValues>;
|
|
26179
26208
|
offset: TOffset;
|
|
26180
|
-
}> : Process$
|
|
26209
|
+
}> : Process$1j<AsArray<TValues>, TIgnore, TNotFound>;
|
|
26181
26210
|
|
|
26182
26211
|
/**
|
|
26183
26212
|
* **IfLength**`<TEvaluate,TLength,IF,[ELSE],[MAYBE]>`
|
|
@@ -26222,8 +26251,8 @@ type Merge$1<TUser extends Partial<OnPassRemap>, TKeys extends readonly (ObjectK
|
|
|
26222
26251
|
false: false;
|
|
26223
26252
|
error: Constant<"not-set">;
|
|
26224
26253
|
}> = [] extends TKeys ? TConfig : Merge$1<TUser, AfterFirst<TKeys>, As<ExpandDictionary<Record<First<TKeys>, TUser[First<TKeys>]> & Omit<TConfig, First<TKeys>>>, OnPassRemap>>;
|
|
26225
|
-
type Process$
|
|
26226
|
-
type Iterate$7<TTest extends readonly unknown[], TPass, TRemap extends OnPassRemap<unknown, unknown, unknown>> = [] extends TTest ? TPass : Process$
|
|
26254
|
+
type Process$1i<TTest, TPass, TRemap extends OnPassRemap<unknown, unknown, unknown>> = [IsNever<TTest>] extends [true] ? TRemap["never"] : [IsErrorCondition<TTest>] extends [true] ? TRemap["error"] extends Constant<"not-set"> ? TTest : TRemap["error"] : [IsFalse<TTest>] extends [true] ? TRemap["false"] : TPass;
|
|
26255
|
+
type Iterate$7<TTest extends readonly unknown[], TPass, TRemap extends OnPassRemap<unknown, unknown, unknown>> = [] extends TTest ? TPass : Process$1i<First<TTest>, TPass, TRemap> extends TPass ? Iterate$7<AfterFirst<TTest>, TPass, TRemap> : Process$1i<First<TTest>, TPass, TRemap>;
|
|
26227
26256
|
/**
|
|
26228
26257
|
* **OnPass**`<TTest, TPass,[TRemap],[TFalse]>`
|
|
26229
26258
|
*
|
|
@@ -26237,7 +26266,7 @@ type Iterate$7<TTest extends readonly unknown[], TPass, TRemap extends OnPassRem
|
|
|
26237
26266
|
* - the `TRemap` allows you to remap error conditions
|
|
26238
26267
|
* as well if needed
|
|
26239
26268
|
*/
|
|
26240
|
-
type OnPass<TTest, TPass, TRemap extends Partial<OnPassRemap<unknown, unknown, unknown>> = OnPassRemap<never, false, Constant<"not-set">>> = TTest extends readonly unknown[] ? Iterate$7<TTest, TPass, TRemap extends OnPassRemap<never, false, Constant<"not-set">> ? TRemap : Merge$1<TRemap, Keys<TRemap>>> : Process$
|
|
26269
|
+
type OnPass<TTest, TPass, TRemap extends Partial<OnPassRemap<unknown, unknown, unknown>> = OnPassRemap<never, false, Constant<"not-set">>> = TTest extends readonly unknown[] ? Iterate$7<TTest, TPass, TRemap extends OnPassRemap<never, false, Constant<"not-set">> ? TRemap : Merge$1<TRemap, Keys<TRemap>>> : Process$1i<TTest, TPass, TRemap extends OnPassRemap<never, false, Constant<"not-set">> ? TRemap : Merge$1<TRemap, Keys<TRemap>>>;
|
|
26241
26270
|
|
|
26242
26271
|
/**
|
|
26243
26272
|
* **Passthrough**`<TContent,TPass,THandle>`
|
|
@@ -26289,7 +26318,7 @@ type AsDoneFn<T> = T extends {
|
|
|
26289
26318
|
*/
|
|
26290
26319
|
type AsIndexOf<T extends Dictionary | object | Tuple, K extends PropertyKey, ERR = Constant<"NoErr">> = K extends keyof T ? T[K] : IfEqual<ERR, Constant<"NoErr">, Throw<"invalid-key", `the key '${AsString<K>}' is not a valid key of the passed container`, "AsIndexOf">, ERR>;
|
|
26291
26320
|
|
|
26292
|
-
type Process$
|
|
26321
|
+
type Process$1h<T extends readonly unknown[]> = TupleToUnion<RemoveMarked<{
|
|
26293
26322
|
[K in keyof T]: T[K] extends Nothing ? Constant<"Marked"> : T[K];
|
|
26294
26323
|
}>>;
|
|
26295
26324
|
/**
|
|
@@ -26304,7 +26333,7 @@ type Process$1g<T extends readonly unknown[]> = TupleToUnion<RemoveMarked<{
|
|
|
26304
26333
|
* which defaults to `never`)
|
|
26305
26334
|
* - all other values are just proxied through
|
|
26306
26335
|
*/
|
|
26307
|
-
type AsSomething<T, TNonUnion = never> = IsUnion<T> extends true ? Process$
|
|
26336
|
+
type AsSomething<T, TNonUnion = never> = IsUnion<T> extends true ? Process$1h<UnionToTuple$1<T>> : T extends Nothing ? TNonUnion : T;
|
|
26308
26337
|
|
|
26309
26338
|
/**
|
|
26310
26339
|
* Define a class constructor; allowing strong typing for constructor's parameters
|
|
@@ -26382,13 +26411,13 @@ type RemoveEmpty<T> = T extends Tuple ? As<RemoveMarked<ProcessTup<T>>, readonly
|
|
|
26382
26411
|
|
|
26383
26412
|
type Marked$2 = typeof MARKED;
|
|
26384
26413
|
type _Keys$4<T extends object> = UnionToTuple$1<keyof RemoveIndexKeys<T>> extends readonly ObjectKey[] ? UnionToTuple$1<keyof RemoveIndexKeys<T>> : never;
|
|
26385
|
-
type Process$
|
|
26414
|
+
type Process$1g<T extends Container, TKeys extends readonly PropertyKey[], TResults extends Container = T extends readonly unknown[] ? [] : EmptyObject> = [] extends TKeys ? TResults : First<TKeys> extends keyof T ? DoesExtend<T[First<TKeys>], Marked$2> extends true ? Process$1g<T, AfterFirst<TKeys>, TResults> : Process$1g<T, AfterFirst<TKeys>, First<TKeys> extends keyof T ? TResults extends readonly unknown[] ? [...TResults, T[First<TKeys>]] : TResults extends Dictionary ? TResults & Record<First<TKeys>, T[First<TKeys>]> : never : never> : never;
|
|
26386
26415
|
/**
|
|
26387
26416
|
* **RemoveMarked**`<T>`
|
|
26388
26417
|
*
|
|
26389
26418
|
* Removes all values in `T` which extends `Constant<"Marked">`
|
|
26390
26419
|
*/
|
|
26391
|
-
type RemoveMarked<T extends Container> = Process$
|
|
26420
|
+
type RemoveMarked<T extends Container> = Process$1g<T, T extends Tuple ? NumericKeys<T> : _Keys$4<T>>;
|
|
26392
26421
|
|
|
26393
26422
|
/**
|
|
26394
26423
|
* **RemoveIndexKeys**`<T>`
|
|
@@ -26447,7 +26476,7 @@ type _AsArray<T> = T extends Tuple ? Mutable<T> : If<IsUndefined<T>, [
|
|
|
26447
26476
|
*/
|
|
26448
26477
|
type AsArray<T> = _AsArray<T> extends any[] ? _AsArray<T> : never;
|
|
26449
26478
|
|
|
26450
|
-
type Process$
|
|
26479
|
+
type Process$1f<T extends `${number}`> = If<IsStringLiteral<T>, StripLeading<T, "-">, string>;
|
|
26451
26480
|
/**
|
|
26452
26481
|
* **Abs**`<T>`
|
|
26453
26482
|
*
|
|
@@ -26456,7 +26485,7 @@ type Process$1e<T extends `${number}`> = If<IsStringLiteral<T>, StripLeading<T,
|
|
|
26456
26485
|
* - you can pass in a numeric string literal and it perform ABS func while
|
|
26457
26486
|
* preserving string literal type
|
|
26458
26487
|
*/
|
|
26459
|
-
type Abs<T extends NumberLike> = T extends number ? AsNumber<Process$
|
|
26488
|
+
type Abs<T extends NumberLike> = T extends number ? AsNumber<Process$1f<`${T}`>> : T extends `${number}` ? Process$1f<T> : never;
|
|
26460
26489
|
|
|
26461
26490
|
/**
|
|
26462
26491
|
* **AbsMaybe**`<T>`
|
|
@@ -26501,13 +26530,13 @@ type GrowExp<A extends any[], N extends number, P extends any[][], L extends num
|
|
|
26501
26530
|
type MapItemType<T, I> = {
|
|
26502
26531
|
[K in keyof T]: I;
|
|
26503
26532
|
};
|
|
26504
|
-
type Process$
|
|
26533
|
+
type Process$1e<T, N extends number> = N extends 0 ? [] : MapItemType<GrowExp<[0], N, []>, T>;
|
|
26505
26534
|
/**
|
|
26506
26535
|
* **FixedLengthArray**`<T,N>`
|
|
26507
26536
|
*
|
|
26508
26537
|
* Creates a fixed length `<N>` array of a given type `<T>`
|
|
26509
26538
|
*/
|
|
26510
|
-
type FixedLengthArray<T, N extends number> = Process$
|
|
26539
|
+
type FixedLengthArray<T, N extends number> = Process$1e<T, N> extends readonly unknown[] ? Process$1e<T, N> : never;
|
|
26511
26540
|
|
|
26512
26541
|
/**
|
|
26513
26542
|
* **ParseInt**`<T>`
|
|
@@ -26530,7 +26559,7 @@ type ParseInt<T> = T extends `${infer N extends number}` ? N : never;
|
|
|
26530
26559
|
*/
|
|
26531
26560
|
type AsNumber<T> = T extends number ? T : T extends `${number}` ? ParseInt<T> : never;
|
|
26532
26561
|
|
|
26533
|
-
type Process$
|
|
26562
|
+
type Process$1d<TTuple extends readonly string[], TSeparator extends string, TResult extends string = ""> = [] extends TTuple ? TResult : Process$1d<AfterFirst<TTuple>, TSeparator, TResult extends "" ? First<TTuple> extends "" ? TResult : `${First<TTuple>}` : First<TTuple> extends "" ? TResult : `${TResult}${TSeparator}${First<TTuple>}`>;
|
|
26534
26563
|
type Slicer<TTuple extends readonly unknown[], TMax extends number | null, TEllipsis extends string | false> = TMax extends number ? TakeFirst<TTuple, TMax> extends readonly unknown[] ? TEllipsis extends string ? ToStringArray<[...TakeFirst<TTuple, TMax>, TEllipsis]> : ToStringArray<TakeFirst<TTuple, TMax>> : never : ToStringArray<TTuple>;
|
|
26535
26564
|
/**
|
|
26536
26565
|
* **Join**`<TArr,[TSeparator],[TMax]>`
|
|
@@ -26545,7 +26574,7 @@ type Slicer<TTuple extends readonly unknown[], TMax extends number | null, TElli
|
|
|
26545
26574
|
*
|
|
26546
26575
|
* **Related:** `Concat<TArr>`
|
|
26547
26576
|
*/
|
|
26548
|
-
type Join<TTuple extends readonly unknown[], TSeparator extends string = "", TMax extends number | null = null, TEllipsis extends string | false = "..."> = ToStringArray<TTuple> extends readonly string[] ? TMax extends number ? IsGreaterThan<TTuple["length"], TMax> extends true ? Process$
|
|
26577
|
+
type Join<TTuple extends readonly unknown[], TSeparator extends string = "", TMax extends number | null = null, TEllipsis extends string | false = "..."> = ToStringArray<TTuple> extends readonly string[] ? TMax extends number ? IsGreaterThan<TTuple["length"], TMax> extends true ? Process$1d<Slicer<TTuple, TMax, TEllipsis>, TSeparator> : Process$1d<ToStringArray<TTuple>, TSeparator> : Process$1d<ToStringArray<TTuple>, TSeparator> : never;
|
|
26549
26578
|
|
|
26550
26579
|
/**
|
|
26551
26580
|
* **AsString**<T>
|
|
@@ -26631,9 +26660,9 @@ type RightMostDigit<s extends string> = s extends `${infer rest}${NumericChar}`
|
|
|
26631
26660
|
type SumStrings<left extends string, right extends string, accumulatedResultDigits extends string = "", carry extends boolean = false> = "" extends left ? "" extends right ? carry extends true ? `1${accumulatedResultDigits}` : accumulatedResultDigits : RightMostDigit<right> extends RightMostDigitResult<infer remainingRight, infer rightDigit> ? SumSingleDigits<"0", rightDigit, carry> extends SingleDigitSumResult<infer resultDigit, infer resultCarry> ? SumStrings<"", remainingRight, `${resultDigit}${accumulatedResultDigits}`, resultCarry> : never : never : "" extends right ? RightMostDigit<left> extends RightMostDigitResult<infer remainingLeft, infer leftDigit> ? SumSingleDigits<"0", leftDigit, carry> extends SingleDigitSumResult<infer resultDigit, infer resultCarry> ? SumStrings<remainingLeft, "", `${resultDigit}${accumulatedResultDigits}`, resultCarry> : never : never : RightMostDigit<left> extends RightMostDigitResult<infer remainingLeft, infer leftDigit> ? RightMostDigit<right> extends RightMostDigitResult<infer remainingRight, infer rightDigit> ? SumSingleDigits<leftDigit, rightDigit, carry> extends SingleDigitSumResult<infer resultDigit, infer resultCarry> ? SumStrings<remainingLeft, remainingRight, `${resultDigit}${accumulatedResultDigits}`, resultCarry> : never : never : never;
|
|
26632
26661
|
type _Subtract<TValue extends `${number}`, TCountArr extends readonly unknown[]> = [] extends TCountArr ? TValue : _Subtract<Decrement<TValue>, AfterFirst<TCountArr>>;
|
|
26633
26662
|
type AddNegatives<A extends `${number}`, B extends `${number}`> = SumStrings<A, B>;
|
|
26634
|
-
type Process$
|
|
26663
|
+
type Process$1c<A extends `${number}`, B extends `${number}`> = And<[IsNegativeNumber<A>, IsNegativeNumber<B>]> extends true ? `-${AddNegatives<Abs<A>, Abs<B>>}` : IsNegativeNumber<B> extends true ? FixedLengthArray<unknown, AsNumber<Abs<B>>> extends readonly unknown[] ? _Subtract<A, FixedLengthArray<unknown, AsNumber<Abs<B>>>> : never : IsNegativeNumber<A> extends true ? FixedLengthArray<unknown, AsNumber<Abs<A>>> extends readonly unknown[] ? _Subtract<B, FixedLengthArray<unknown, AsNumber<Abs<A>>>> : never : SumStrings<A, B>;
|
|
26635
26664
|
type CheckWide<A extends NumberLike, B extends NumberLike> = IsWideType<A> extends true ? true : IsWideType<B> extends true ? true : false;
|
|
26636
|
-
type PreProcess$2<A extends NumberLike, B extends NumberLike> = CheckWide<A, B> extends true ? Or<[IsString<A>, IsString<A>]> extends true ? string : number : Or<[IsWideType<A>, IsWideType<B>]> extends true ? If<IsString<A>, string, number> : A extends `${number}` ? B extends `${number}` ? As<Process$
|
|
26665
|
+
type PreProcess$2<A extends NumberLike, B extends NumberLike> = CheckWide<A, B> extends true ? Or<[IsString<A>, IsString<A>]> extends true ? string : number : Or<[IsWideType<A>, IsWideType<B>]> extends true ? If<IsString<A>, string, number> : A extends `${number}` ? B extends `${number}` ? As<Process$1c<A, B>, `${number}`> : As<Process$1c<A, AsString<B>>, `${number}`> : A extends number ? B extends number ? AsNumber<Process$1c<`${A}`, `${B}`>> : AsNumber<Process$1c<`${A}`, As<B, `${number}`>>> : never;
|
|
26637
26666
|
/**
|
|
26638
26667
|
* **Add**`<A,B>`
|
|
26639
26668
|
*
|
|
@@ -26644,7 +26673,7 @@ type PreProcess$2<A extends NumberLike, B extends NumberLike> = CheckWide<A, B>
|
|
|
26644
26673
|
*/
|
|
26645
26674
|
type Add<A extends NumberLike, B extends NumberLike> = A extends number ? As<PreProcess$2<A, B>, number> : A extends `${number}` ? As<PreProcess$2<A, B>, `${number}`> : never;
|
|
26646
26675
|
|
|
26647
|
-
type Process$
|
|
26676
|
+
type Process$1b<T extends `${number}`> = EnsureLeading<T, "-">;
|
|
26648
26677
|
/**
|
|
26649
26678
|
* **AsNegativeNumber**
|
|
26650
26679
|
*
|
|
@@ -26652,7 +26681,7 @@ type Process$1a<T extends `${number}`> = EnsureLeading<T, "-">;
|
|
|
26652
26681
|
*
|
|
26653
26682
|
* **Related**: `Abs`, `InvertNumericSign`
|
|
26654
26683
|
*/
|
|
26655
|
-
type AsNegativeNumber<T extends NumberLike> = T extends Zero ? T : T extends number ? AsNumber<Process$
|
|
26684
|
+
type AsNegativeNumber<T extends NumberLike> = T extends Zero ? T : T extends number ? AsNumber<Process$1b<`${T}`>> extends number ? AsNumber<Process$1b<`${T}`>> : never : T extends `${number}` ? Process$1b<T> extends `${number}` ? Process$1b<T> : never : never;
|
|
26656
26685
|
|
|
26657
26686
|
type Convert$4<T> = T extends `${number}` ? ToNumber<T> : T;
|
|
26658
26687
|
type ConvertTuple<T> = T extends unknown[] ? {
|
|
@@ -26725,7 +26754,7 @@ type AsError__Meta = [
|
|
|
26725
26754
|
type Props$1<T extends AnyObject | undefined> = T extends AnyObject ? T : EmptyObject;
|
|
26726
26755
|
type IdFrom<T extends AnyObject> = AsIndexOf<T, "id", never>;
|
|
26727
26756
|
type LibraryFrom<T extends AnyObject> = AsIndexOf<T, "library", never>;
|
|
26728
|
-
type Process$
|
|
26757
|
+
type Process$1a<T extends AsError__Meta> = IsEqual<T, [string, string]> extends true ? ErrorCondition<T[0], T[1], never> : T extends [string, string, TypeErrorInfo] ? Throw<T[0], T[1], "AsError", {
|
|
26729
26758
|
id: IdFrom<Props$1<T[2]>>;
|
|
26730
26759
|
library: LibraryFrom<Props$1<T[2]>>;
|
|
26731
26760
|
}> : ErrorCondition<T[0], T[1], never>;
|
|
@@ -26754,7 +26783,7 @@ type Process$19<T extends AsError__Meta> = IsEqual<T, [string, string]> extends
|
|
|
26754
26783
|
*/
|
|
26755
26784
|
type AsError<TType> = TType extends ErrorCondition ? TType : IfNever<TType, ErrorCondition<"never-value", "a 'never' type was encountered which is not allowed in this context!">, TType extends Error$1<string> ? Throw<"runtime-error", `the JS runtime's Error class was found with the message: '${TType["message"]}'`, "AsError", {
|
|
26756
26785
|
library: "inferred-types/constants";
|
|
26757
|
-
}> : TType extends AsError__Meta ? Process$
|
|
26786
|
+
}> : TType extends AsError__Meta ? Process$1a<TType> : Throw<"failed-to-wrap", Concat<[
|
|
26758
26787
|
"An unexpected value -- ",
|
|
26759
26788
|
ToString<TType>,
|
|
26760
26789
|
" -- was passed into the AsError<T> type utility!"
|
|
@@ -26999,7 +27028,7 @@ type StackTrace = StackFrame[];
|
|
|
26999
27028
|
* Iterates over each element of the Tuple
|
|
27000
27029
|
*/
|
|
27001
27030
|
type SingleFilter$3<TList extends readonly unknown[], TFilter, TOp extends ComparatorOperation, Result extends unknown[] = []> = TList extends [infer Head, ...infer Rest] ? [Compare$1<Head, TOp, TFilter>] extends [true] ? SingleFilter$3<Rest, TFilter, TOp, Result> : SingleFilter$3<Rest, TFilter, TOp, [...Result, Head]> : Result;
|
|
27002
|
-
type Process$
|
|
27031
|
+
type Process$19<TList extends unknown[] | readonly unknown[], TFilter, TOp extends ComparatorOperation> = TList extends unknown[] ? SingleFilter$3<TList, TFilter, TOp> : TList extends readonly unknown[] ? Readonly<SingleFilter$3<[...TList], TFilter, TOp>> : never;
|
|
27003
27032
|
/**
|
|
27004
27033
|
* **Filter**`<TList, TComparator, [TOp]>`
|
|
27005
27034
|
*
|
|
@@ -27023,7 +27052,7 @@ type Process$18<TList extends unknown[] | readonly unknown[], TFilter, TOp exten
|
|
|
27023
27052
|
*
|
|
27024
27053
|
* **Related:** `RetainFromList`, `RemoveFromList`
|
|
27025
27054
|
*/
|
|
27026
|
-
type Filter<TList extends readonly unknown[], TComparator, TOp extends ComparatorOperation = "extends"> = TList extends readonly unknown[] ? IfNever<TComparator, RemoveNever<TList>, If<IsArray<TComparator>, Process$
|
|
27055
|
+
type Filter<TList extends readonly unknown[], TComparator, TOp extends ComparatorOperation = "extends"> = TList extends readonly unknown[] ? IfNever<TComparator, RemoveNever<TList>, If<IsArray<TComparator>, Process$19<TList, TupleToUnion<TComparator>, TOp>, Process$19<TList, TComparator, TOp>>> : never;
|
|
27027
27056
|
|
|
27028
27057
|
/**
|
|
27029
27058
|
* Converts a Tuple type into a _union_ of the tuple elements
|
|
@@ -27071,7 +27100,13 @@ type InvalidCast<T> = Throw<"invalid-cast", `An attempt to cast a type as being
|
|
|
27071
27100
|
*/
|
|
27072
27101
|
type AsNonNull<T> = If<IsEqual<T, null>, InvalidCast<T>, IsUnion<T> extends true ? TupleToUnion<Filter<UnionToTuple$1<T>, null>> : T> extends null ? never : If<IsEqual<T, null>, InvalidCast<T>, IsUnion<T> extends true ? TupleToUnion<Filter<UnionToTuple$1<T>, null>> : T>;
|
|
27073
27102
|
|
|
27074
|
-
|
|
27103
|
+
/**
|
|
27104
|
+
* **AsObject<T>**
|
|
27105
|
+
*
|
|
27106
|
+
* Proxies through any ony existing object, but will also
|
|
27107
|
+
* convert a `KeyValueTuple` into an object.
|
|
27108
|
+
*/
|
|
27109
|
+
type AsObject<T> = T extends AnyObject ? T : never;
|
|
27075
27110
|
|
|
27076
27111
|
/**
|
|
27077
27112
|
* **AsObjectKeys**`<T>`
|
|
@@ -27163,6 +27198,22 @@ type Break<T extends string, D extends string> = (string extends T ? [string, st
|
|
|
27163
27198
|
*/
|
|
27164
27199
|
type Email = `${string}@${string}.${string}`;
|
|
27165
27200
|
|
|
27201
|
+
type Process$18<T extends readonly KeyValue[], O extends Dictionary = EmptyObject> = [] extends T ? ExpandDictionary<O> : Process$18<AfterFirst<T>, O & Record<First<T>["key"], First<T>["value"]>>;
|
|
27202
|
+
/**
|
|
27203
|
+
* **FromKeyValueTuple**`<T>`
|
|
27204
|
+
*
|
|
27205
|
+
* Converts a tuple of KeyValue object into an object.
|
|
27206
|
+
*
|
|
27207
|
+
* **Example:**
|
|
27208
|
+
* ```ts
|
|
27209
|
+
* // { foo: 1 }
|
|
27210
|
+
* type T = ToKeyValueTuple<[ {key: "foo", value: 1} ]>
|
|
27211
|
+
* ```
|
|
27212
|
+
*
|
|
27213
|
+
* **Related:** `ObjectToTuple`, `ToKeyValueTuple`, `AsObject`
|
|
27214
|
+
*/
|
|
27215
|
+
type FromKeyValueTuple<T extends readonly KeyValue[]> = Process$18<T>;
|
|
27216
|
+
|
|
27166
27217
|
/**
|
|
27167
27218
|
* **IntersectWithAll**`<TList,TIntersection>`
|
|
27168
27219
|
*
|
|
@@ -33426,6 +33477,30 @@ type UnderlyingType<T> = T extends readonly unknown[] ? {
|
|
|
33426
33477
|
[K in keyof T]: Process$R<T[K]>;
|
|
33427
33478
|
} : Process$R<T>;
|
|
33428
33479
|
|
|
33480
|
+
/**
|
|
33481
|
+
* **UUID** - _**U**niversally **U**nique **ID**entifier_
|
|
33482
|
+
*
|
|
33483
|
+
* A unique identifer as defined by [RFC 4122](https://datatracker.ietf.org/doc/html/rfc4122#section-4.1)
|
|
33484
|
+
*
|
|
33485
|
+
* A UUID is 128 bits long, and can guarantee uniqueness across space and time.
|
|
33486
|
+
* UUIDs were originally used in the Apollo Network Computing System and later in
|
|
33487
|
+
* the Open Software Foundation's (OSF) Distributed Computing Environment (DCE), and
|
|
33488
|
+
* then in Microsoft Windows platforms.
|
|
33489
|
+
*
|
|
33490
|
+
* - each region is composed of Hexedecimal notation
|
|
33491
|
+
* - there are 5 regions of varying lengths
|
|
33492
|
+
* - in total a UUID is composed of 16 octets
|
|
33493
|
+
*
|
|
33494
|
+
* **Related:** `UUID_Urn`
|
|
33495
|
+
*/
|
|
33496
|
+
type UUID = `${string}-${string}-${string}-${string}-${string}`;
|
|
33497
|
+
/**
|
|
33498
|
+
* A URN representation of a UUID string
|
|
33499
|
+
*
|
|
33500
|
+
* **Related:** `UUID`
|
|
33501
|
+
*/
|
|
33502
|
+
type UUID_Urn = `urn:uuid:${UUID}`;
|
|
33503
|
+
|
|
33429
33504
|
/**
|
|
33430
33505
|
* **JsonValue**`<T>`
|
|
33431
33506
|
*
|
|
@@ -33558,13 +33633,15 @@ type Compact<TSource extends AnyObject, TKeys extends readonly (ObjectKey & keyo
|
|
|
33558
33633
|
*
|
|
33559
33634
|
* Type utility to convert an object to an array of object based key-value pairs.
|
|
33560
33635
|
*
|
|
33561
|
-
* Example
|
|
33636
|
+
* **Example:**
|
|
33562
33637
|
* ```ts
|
|
33563
33638
|
* // readonly [ {key: "foo", value: 1} ]
|
|
33564
33639
|
* type T = ObjectToTuple<{ foo: 1 }>
|
|
33565
33640
|
* // readonly [ { foo: 1 } ]
|
|
33566
33641
|
* type C = ObjectToTuple< foo: 1 }, true>;
|
|
33567
33642
|
* ```
|
|
33643
|
+
*
|
|
33644
|
+
* **Related:** `ToKv`, `FromKv`
|
|
33568
33645
|
*/
|
|
33569
33646
|
type ObjectToTuple<TObj extends AnyObject, TCompact extends boolean = false> = TObj extends ExplicitlyEmptyObject ? [] : IsWideContainer<TObj> extends true ? TCompact extends false ? KeyValue[] : Record<ObjectKey, any>[] : TCompact extends false ? Process$P<TObj, As<Keys<TObj>, readonly (ObjectKey & keyof TObj)[]>> : Compact<TObj, As<Keys<TObj>, readonly (ObjectKey & keyof TObj)[]>>;
|
|
33570
33647
|
|
|
@@ -33849,6 +33926,21 @@ type ToJsonValue<T> = T extends string ? `"${T}"` : T extends number ? `${T}` :
|
|
|
33849
33926
|
[K in keyof T]: ToJsonValue<T[K]>;
|
|
33850
33927
|
}, string>> : never;
|
|
33851
33928
|
|
|
33929
|
+
/**
|
|
33930
|
+
* **ToKeyValueTuple**`<TObj>`
|
|
33931
|
+
*
|
|
33932
|
+
* Converts an object into a tuple of `KeyValue` objects.
|
|
33933
|
+
*
|
|
33934
|
+
* **Example:**
|
|
33935
|
+
* ```ts
|
|
33936
|
+
* // readonly [ {key: "foo", value: 1} ]
|
|
33937
|
+
* type T = ToKeyValueTuple<{ foo: 1 }>
|
|
33938
|
+
* ```
|
|
33939
|
+
*
|
|
33940
|
+
* **Related:** `ObjectToTuple`, `FromKeyValueTuple`
|
|
33941
|
+
*/
|
|
33942
|
+
type ToKeyValueTuple<TObj extends AnyObject> = ObjectToTuple<TObj, false>;
|
|
33943
|
+
|
|
33852
33944
|
/**
|
|
33853
33945
|
* **ToNumber**`<T>`
|
|
33854
33946
|
*
|
|
@@ -38813,7 +38905,7 @@ type Process$2<TObj extends AnyObject, TKeys extends readonly (ObjectKey & keyof
|
|
|
38813
38905
|
* you can get a somewhat less strict tuple type by setting `TKeys` to `false`
|
|
38814
38906
|
* - Ok ... _now that you're sorted_ ...
|
|
38815
38907
|
*
|
|
38816
|
-
* **Related:** `KeyValue`, `FromKv`
|
|
38908
|
+
* **Related:** `KeyValue`, `FromKv`, `ObjectToTuple`, `TupleToObject`
|
|
38817
38909
|
*/
|
|
38818
38910
|
type ToKv<TObj extends AnyObject, TKeys extends (readonly (ObjectKey & keyof TObj)[]) | false = As<Keys<TObj>, (readonly (ObjectKey & keyof TObj)[])>> = IsObjectLiteral<TObj> extends true ? TKeys extends readonly (ObjectKey & keyof TObj)[] ? Process$2<TObj, TKeys> : Array<{
|
|
38819
38911
|
[K in keyof TObj]: {
|
|
@@ -39142,4 +39234,4 @@ type Process<T extends readonly unknown[], R extends readonly unknown[] = []> =
|
|
|
39142
39234
|
*/
|
|
39143
39235
|
type CapitalizeEachUnionMember<T> = IsUnion<T> extends true ? Process<UnionToTuple$1<T>> : T extends string ? Capitalize<T> : T;
|
|
39144
39236
|
|
|
39145
|
-
export { ACCELERATION_METRICS_LOOKUP$2 as ACCELERATION_METRICS_LOOKUP, ALPHA_CHARS, AMAZON_BOOKS, AMAZON_DNS$2 as AMAZON_DNS, APPLE_DNS$2 as APPLE_DNS, AREA_METRICS_LOOKUP$2 as AREA_METRICS_LOOKUP, AUSTRALIAN_NEWS$2 as AUSTRALIAN_NEWS, type Abs, type AbsMaybe, type Acceleration, type AccelerationMetrics, type AccelerationUom, type Add, type AddKeyValue, type AddUrlPathSegment, type AfterFirst, type AfterFirstChar, type AllCaps, type AllExtend, type AllLiteral, type AllNumericLiterals, type AllStringLiterals, type AllowNonTupleWhenSingular, type Alpha, type AlphaChar, type AlphaNumeric, type AlphaNumericChar, type AmPm, type AmPmCase, type AmazonUrl, type AmericanExpress, type And, type AnyArray, type AnyFunction, type AnyObject, type AnyQueryParams, type Api, type ApiCallback, type ApiConfig, type ApiEscape, type ApiHandler, type ApiOptions, type ApiReturn, type ApiState, type ApiStateInitializer, type ApiSurface, type AppendRight, type AppleUrl, type AreSameLength, type AreSameType, type Area, type AreaMetrics, type AreaUom, type AriaDocStructureRoles, type AriaLandmarkRoles, type AriaLiveRegionRoles, type AriaRole, type AriaWidgetRoles, type AriaWindowRoles, type ArrayElementType, type ArrayTypeDefn, type As, type AsApi, type AsArray, type AsBoolean, type AsChoice, type AsClassSelector, type AsContainer, type AsDefined, type AsDictionary, type AsDoneFn, type AsErr, type AsErrKind, type AsError, type AsError__Meta, type AsEscapeFunction, type AsFinalizedConfig, type AsFnMeta, type AsFunction, type AsHtmlComponentTag, type AsHtmlTag, type AsIndexOf, type AsIp6Prefix, type AsLeft, type AsLeftRight, type AsList, type AsLiteralFn, type AsNarrowingFn, type AsNegativeNumber, type AsNonNull, type AsNumber, type AsNumberWhenPossible, type AsNumericArray, type AsObject, type AsObjectKey, type AsObjectKeys, type AsOptionalParamFn, type AsPropertyKey, type AsRecord, type AsRef, type AsRight, type AsSomething, type AsString, type AsStringLiteral, type AsStringUnion, type AsToken, type AsTokenOpt, type AsTuple, type AsType, type AsUnion, type AsVueComputedRef, type AsyncFunction, type AustralianNewsCompanies, type AustralianNewsUrls, type AvailableConverters, type Awaited$1 as Awaited, BELGIUM_NEWS$2 as BELGIUM_NEWS, BEST_BUY_DNS$2 as BEST_BUY_DNS, BLOOD_MARKERS_LOOKUP, type BareCssSelector, type BaseTypeToken, type BeforeLast, type BelgianNewsCompanies, type BelgianNewsUrls, type BespokeLiteral, type BespokeUnion, type BestBuyUrl, type BooleanLike, type Box, type BoxValue, type BoxedFnParams, type Bracket, type Branded, type Break, type BuildDefinition, CANADIAN_NEWS$2 as CANADIAN_NEWS, CHEWY_DNS$2 as CHEWY_DNS, CHINESE_NEWS$2 as CHINESE_NEWS, COMMA, COMMON_OBJ_PROPS, CONSONANTS$2 as CONSONANTS, COSTCO_DNS$2 as COSTCO_DNS, CSS_NAMED_COLORS$2 as CSS_NAMED_COLORS, type CSV, CURRENT_METRICS_LOOKUP$2 as CURRENT_METRICS_LOOKUP, CVS_DNS$2 as CVS_DNS, type Callback, type CamelCase, type CamelKeys, type CanadianNewsCompanies, type CanadianNewsUrls, type CapFirstAlpha, type CapitalizeEachUnionMember, type CapitalizeWords, type Cardinality, type Cardinality0, type Cardinality1, type CardinalityExplicit, type CardinalityFilter0, type CardinalityFilter1, type CardinalityIn, type CardinalityInput, type CardinalityNode, type CardinalityOut, type CargoDependency, type CargoToml, type Chars, type ChewyUrl, type ChineseNewsCompanies, type ChineseNewsUrls, type Choice, type ChoiceApi, type ChoiceApiConfig, type ChoiceApiOptions, type ChoiceBuilder, type ChoiceCallback, type ChoiceValue, type CivilianHours, type CivilianTime, type CivilianTimeOptions, type ClosingBracket, type ClosingMark, type ClosingMarkPlus, type ColorFnOptOpacity, type ColorFnValue, type ColorParam, type CombinedKeys, type CommonHtmlElement, type CommonObjProps, type ComparatorOperation, type Compare$1 as Compare, type Comparison, type CompleteError, type Concat, type ConfigDefinition, type ConfigRestApi, type ConfiguredMap, type Consonant, type Consonants, type Constant$3 as Constant, type ConstrainObject, type ConstrainedObjectCallback, type ConstrainedObjectIdentity, type Constructor, type Container, type ContainerBlockKey, type ContainerKeyGuarantee, type Contains, type ContainsAll, type ContainsSome, type Conversion, type ConversionTuple, type ConvertSet, type ConvertTypeOf, type ConvertWideTokenNames, type ConverterCoverage, type ConverterDefn, type CostCoUrl, type CostcoUrl, type CountryPhoneNumber, type Cr, type CrThenIndent, type CreateChoice, type CreateDictHash, type CreateDictShape, type CreateKV, type CreateLookup, type CreditCard, type CssAbsolutionPositioningProperties, type CssAlignContent, type CssAlignItems, type CssAlignProperties, type CssAlignSelf, type CssAnimation, type CssAnimationComposition, type CssAnimationDelay, type CssAnimationDirection, type CssAnimationDuration, type CssAnimationFillMode, type CssAnimationIterationCount, type CssAnimationPlayState, type CssAnimationProperties, type CssAnimationTimingFunction, type CssAppearance, type CssAspectRatio, type CssBackdropFilter, type CssBackgroundProperties, type CssBorderCollapse, type CssBorderImageRepeat, type CssBorderImageSource, type CssBorderInlineSizing, type CssBorderProperties, type CssBorderStyle, type CssBorderWidth, type CssBoxAlign, type CssBoxDecorationBreak, type CssBoxProperties, type CssBoxShadow, type CssBoxSizing, type CssCalc, type CssClamp, type CssClassSelector, type CssColor, type CssColorFn, type CssColorLight, type CssColorMix, type CssColorMixLight, type CssColorModel, type CssColorSpace, type CssColorSpacePrimary, type CssContent, type CssCursor, type CssDefinition, type CssDisplay, type CssDisplayStatePseudoClasses, type CssFlex, type CssFlexBasis, type CssFlexDirection, type CssFlexFlow, type CssFlexGrow, type CssFlexShrink, type CssFloat, type CssFontFamily, type CssFontFeatureSetting, type CssFontKerning, type CssFontLanguageOverride, type CssFontPalette, type CssFontProperties, type CssFontStyle, type CssFontSynthesis, type CssFontWeight, type CssFontWidth, type CssFromDefnOption, type CssFunctionalPseudoClass, type CssGap, type CssGlobal, type CssHangingPunctuation, type CssHexColor, type CssHsb, type CssHsl, type CssIdSelector, type CssImageOrientation, type CssImageRendering, type CssImageResolution, type CssInputPseudoClasses, type CssJustifyContent, type CssJustifyItems, type CssJustifyProperties, type CssJustifySelf, type CssKeyframeCallback, type CssKeyframeTimestamp, type CssKeyframeTimestampSuggest, type CssLetterSpacing, type CssLinguisticPseudoClasses, type CssListStyle, type CssLocationPseudoClasses, type CssMargin, type CssMarginBlock, type CssMarginBlockEnd, type CssMarginBlockStart, type CssMarginBottom, type CssMarginInline, type CssMarginInlineEnd, type CssMarginInlineStart, type CssMarginLeft, type CssMarginProperties, type CssMarginRight, type CssMarginTop, type CssMixBlendMode, type CssNamedColors, type CssNamedSizes, type CssObjectFit, type CssObjectPosition, type CssOffsetDistance, type CssOffsetPath, type CssOffsetPosition, type CssOffsetProperties, type CssOkLch, type CssOpacity, type CssOutline, type CssOutlineColor, type CssOutlineOffset, type CssOutlineProperties, type CssOutlineStyle, type CssOutlineWidth, type CssOverflowAnchor, type CssOverflowBlock, type CssOverflowClipMargin, type CssOverflowInline, type CssOverflowProperties, type CssOverflowX, type CssOverflowY, type CssPadding, type CssPaddingBlock, type CssPaddingBlockEnd, type CssPaddingBlockStart, type CssPaddingBottom, type CssPaddingInline, type CssPaddingInlineEnd, type CssPaddingInlineStart, type CssPaddingLeft, type CssPaddingProperties, type CssPaddingRight, type CssPaddingTop, type CssPerspectiveOrigin, type CssPlaceContent, type CssPlaceItems, type CssPlaceProperties, type CssPlaceSelf, type CssPointerEvent, type CssPosition, type CssProperty, type CssPseudoClass, type CssPseudoClassDefn, type CssResourceStatePseudoClasses, type CssRgb, type CssRgba, type CssRotation, type CssRound, type CssSelector, type CssSelectorOptions, type CssSizing, type CssSizingFunction, type CssSizingLight, type CssStroke, type CssStrokeDasharray, type CssStrokeProperties, type CssTagSelector, type CssTextAlign, type CssTextDecorationLine, type CssTextDecorationStyle, type CssTextIndent, type CssTextJustify, type CssTextOrientation, type CssTextOverflow, type CssTextPosition, type CssTextProperties, type CssTextRendering, type CssTextTransform, type CssTextWrap, type CssTextWrapMode, type CssTextWrapStyle, type CssTimePseudoClasses, type CssTiming, type CssTransform, type CssTransformBox, type CssTransformOrigin, type CssTransformProperties, type CssTransformStyle, type CssTranslate, type CssTranslateFn, type CssTreePseudoClasses, type CssUserActionPseudoClasses, type CssVar, type CssVarWithFallback, type CssWhiteSpace, type CssWhiteSpaceCollapse, type CssWordBreak, type CssWritingMode, type Csv, type CsvFormat, type CsvToJsonTuple, type CsvToStrUnion, type CsvToTuple, type CsvToTupleStr, type CsvToUnion, type Current, type CurrentMetrics, type CurrentUom, type CvsUrl, DANISH_NEWS$2 as DANISH_NEWS, DEFAULT_MANY_TO_ONE_MAPPING, DEFAULT_ONE_TO_MANY_MAPPING, DEFAULT_ONE_TO_ONE_MAPPING, DELL_DNS$2 as DELL_DNS, DISTANCE_METRICS_LOOKUP$2 as DISTANCE_METRICS_LOOKUP, DUTCH_NEWS$2 as DUTCH_NEWS, type DanishNewsCompanies, type DanishNewsUrls, type DashToSnake, type DashUppercase, type Date$2 as Date, type DateSeparator, type DateThenMonth, type DateThenMonthThenYear, type DateTime, type DateTimeMinutes, type DateTimeSeconds, type DayOfWeek, type DayofWeekFull, type DecomposeMapConfig, type Decrement, type Default, type DefaultManyToOneMapping, type DefaultOneToManyMapping, type DefaultOneToOneMapping, type DefineObject, type DefineObjectApi, type DefineStatelessApi, type Defined, type DellUrl, type Delta, type DeployConfig, type DialCountryCode, type Dict, type DictArray, type DictArrayFilterCallback, type DictArrayKv, type DictChangeValue, type DictKvTuple, type Dictionary, type DictionaryTypeDefn, type DictionaryWithValueFilter, type DictionaryWithoutValueFilter, type Digit, type DigitNonZero, type Digital, type DigitalLiteral, type Digitize, type DinersClub, type Discover, type Distance, type DistanceMetrics, type DistanceUom, type DnsName, type DockerCompose, type DockerDependsOn, type DockerService, type DoesExtend, type DoesExtendTypeguard, type DoesNotExtend, type DomainName, type DoneFnTuple, type DotPathFor, type DoubleQuote, type DropChars, type DutchNewsCompanies, type DutchNewsUrls, type DynamicSegment, EBAY_DNS$2 as EBAY_DNS, ENERGY_METRICS_LOOKUP$2 as ENERGY_METRICS_LOOKUP, ETSY_DNS$2 as ETSY_DNS, type EbayUrl, type ElementOf, type Email, type Empty, type EmptyObject, type EmptyString, type EmptyStringOr, type EndingWithTypeGuard, type EndpointGenerator, type EndsWith, type Energy, type EnergyMetrics, type EnergyUom, type EnsureKeys, type EnsureLeading, type EnsureLeadingEvery, type EnsureSurround, type EnsureTrailing, type EqualTo, type Equals, type Err, type ErrFrom, type ErrInput, type ErrMsg, type ErrorCondition, type ErrorConditionHandler, type ErrorConditionShape, type EscapeFunction, type EsotericHtmlElement, type EtsyUrl, type EveryLength, type Exif, type ExifAttributionInfo, type ExifCameraInfo, ExifCompression, ExifContrast, type ExifDateTimeInfo, ExifEmbedPolicy, type ExifExtraneous, ExifFlashValues, ExifGainControl, type ExifGps, ExifLightSource, type ExifPhotoContext, ExifPreviewColorSpace, ExifSaturation, ExifSceneCaptureType, ExifSharpness, ExifSubjectDistance, type ExpandDictionary, type ExpandRecursively, type ExpandTuple, type ExpandUnion, type ExplicitlyEmptyObject, type Extends, type ExtendsAll, type ExtendsNone, type ExtendsSome, FALSY_TYPE_KINDS$1 as FALSY_TYPE_KINDS, FALSY_VALUES, FRENCH_NEWS$2 as FRENCH_NEWS, FREQUENCY_METRICS_LOOKUP$2 as FREQUENCY_METRICS_LOOKUP, type Fail, type FalsyValue, type FifoQueue, type Filter, type FilterByProp, type FilterLiterals, type FilterProps, type FilterWideTypes, type FinalizedMapConfig, type Find, type FindFirstIndex, type FindIndexMetaOfString, type FindIndexMetaOfTuple, type FindIndexes, type FindIndexesWithMeta, type FindLastIndex, type Finder, type First, type FirstChar, type FirstKey, type FirstKeyValue, type FirstOfEach, type FirstString, type FixedLengthArray, type Flatten, type FlattenUnion, type FluentApi, type FluentFn, type FluentState, type FnAllowingProps, type FnArgsDefn, type FnDefn, type FnFrom, type FnMeta, type FnParam, type FnParams, type FnPropertiesDefn, type FnProps, type FnReturnTypeDefn, type FnWithDescription, type FnWithProps, type FrenchNewsCompanies, type FrenchNewsUrls, type Frequency, type FrequencyMetrics, type FrequencyUom, type FromDefineObject, type FromDefn, type FromDictArray, type FromDynamicSegment, type FromKv, type FromLiteralTokens, type FromMaybeRef, type FromNamedDynamicSegment, type FromRecordKeyDefn, type FromShapeCallback, type FromSimpleRecordKey, type FromSimpleToken, type FromTypeDefn, type FromWideTokens, type FullDate, type FullWidthQuotation, type FullyQualifiedUrl, GERMAN_NEWS$2 as GERMAN_NEWS, GITHUB_INSIGHT_CATEGORY_LOOKUP$1 as GITHUB_INSIGHT_CATEGORY_LOOKUP, type GenParam, type GenParams, type GermanNewsCompanies, type GermanNewsUrls, type Get$1 as Get, type GetDefaultPort, type GetEach, type GetEachOptions, type GetEscapeFunction, type GetInference, type GetInferenceProps, type GetOptions, type GetPhoneCountryCode, type GetPhoneNumberType, type GetQueryParameterDynamics, type GetTypeOf, type GetUrlDynamics, type GetUrlPath, type GetUrlPathDynamics, type GetUrlPort, type GetUrlProtocol, type GetUrlProtocolPrefix, type GetUrlQueryParams, type GetUrlSource, type GetYouTubePageType, type GitRef, type GithubActionsUrl, type GithubInsightPageType, type GithubInsightUrl, type GithubOrgUrl, type GithubRepoBranchesUrl, type GithubRepoDiscussionUrl, type GithubRepoDiscussionsUrl, type GithubRepoIssueUrl, type GithubRepoIssuesListUrl, type GithubRepoProjectUrl, type GithubRepoProjectsUrl, type GithubRepoPullRequestUrl, type GithubRepoPullRequestsUrl, type GithubRepoReleaseTagUrl, type GithubRepoReleasesUrl, type GithubRepoTagsUrl, type GithubRepoUrl, type GithubUrl, HASH_TABLE_ALPHA_LOWER, HASH_TABLE_ALPHA_UPPER, HASH_TABLE_CHAR, HASH_TABLE_DIGIT, HASH_TABLE_OTHER, HASH_TABLE_SPECIAL, HASH_TABLE_WIDE, HM_DNS$2 as HM_DNS, HOME_DEPOT_DNS$2 as HOME_DEPOT_DNS, HTML_ATOMIC_TAGS$2 as HTML_ATOMIC_TAGS, HTML_BLOCK_TAGS$2 as HTML_BLOCK_TAGS, type HandMUrl, type Handle, type HandleDoneFn, type HasArray, type HasCharacters, type HasEscapeFunction, type HasIndex, type HasIpAddress, type HasNetworkProtocolReference, type HasOtherCharacters, type HasParameters, type HasPhoneCountryCode, type HasProp, type HasQueryParameter, type HasRequiredProps, type HasSameKeys, type HasSameValues, type HasUnionType, type HasUppercase, type HasUrlPath, type HasUrlSource, type HasWideValues, type HaveSameNumericSign, type Healthcheck, type HexColor, type Hexadecimal, type HexadecimalChar, type HomeDepotUrl, type HoursMinutes, type HoursMinutes12, type HoursMinutesSeconds, type HoursMinutesSeconds12, type HoursMinutesSecondsMilliseconds, type HoursMinutesSecondsMilliseconds12, type HtmlBodyElement, type HtmlElement, type HtmlFrameworkElement, type HtmlFunctionalElement, type HtmlHeaderElement, type HtmlInputElement, type HtmlListElement, type HtmlMediaElement, type HtmlStructuralElement, type HtmlSymantecElement, type HtmlTableElement, type HtmlTag, type HtmlTagAtomic, type HtmlTagClose, type HtmlTagOpen, type Html__AtomicTag, type Html__BlockTag, IKEA_DNS$2 as IKEA_DNS, IMAGE_FORMAT_LOOKUP$1 as IMAGE_FORMAT_LOOKUP, INDIAN_NEWS$2 as INDIAN_NEWS, type IP6Multicast, type IP6Unicast, IPv4, IPv6$1 as IPv6, ISO3166_1$2 as ISO3166_1, ITALIAN_NEWS$2 as ITALIAN_NEWS, type IdentityFn, type IdentityFunction, type If, type IfAllExtend, type IfAllLiteral, type IfEqual, type IfEquals, type IfErrorCondition, type IfLeft, type IfLength, type IfLiteralKind, type IfNever, type IfUnset, type IfUnsetOrUndefined, type Iff, type IkeaUrl, type ImgFormat, type ImgFormatWeb, type Immutable, type Increment, type Indent$1 as Indent, type Indent2, type Indent4, type IndentSpaces, type IndentTab, type IndexOf, type Indexable, type IndexableObject, type IndianNewsCompanies, type IndianNewsUrls, type InlineSvg, type Integer, type IntegerBrand, type InternationalPhoneNumber, type Intersect$1 as Intersect, type IntersectAll, type IntersectWithAll, type IntersectingKeys, type Intersection, type InvertNumericSign, type Ip4Address, type Ip4Netmask, type Ip4Netmask16, type Ip4Netmask24, type Ip4Netmask32, type Ip4Netmask8, type Ip4NetmaskSuggestion, type Ip4Octet, type Ip6Address, type Ip6AddressFull, type Ip6AddressLoose, type Ip6Group, type Ip6GroupExpansion, type Ip6Loopback, type Ip6Subnet, type Ip6SubnetPrefix, type IsAllCaps, type IsAllLowercase, type IsAmericanExpress, type IsArray, type IsAtomicTag, type IsBoolean, type IsBooleanLiteral, type IsCapitalized, type IsComputedRef, type IsContainer, type IsCreditCard, type IsCssHexadecimal, type IsCsv, type IsDefined, type IsDictionaryDefinition, type IsDomainName, type IsDotPath, type IsEmptyContainer, type IsEmptyObject, type IsEmptyString, type IsEqual, type IsErr, type IsErrMsg, type IsErrorCondition, type IsEscapeFunction, type IsFalse, type IsFalsy, type IsFloat, type IsFnWithParams, type IsFunction, type IsGreaterThan, type IsGreaterThanOrEqual, type IsHexadecimal, type IsHtmlClosingTag, type IsInteger, type IsIp4Address, type IsIp4Octet, type IsIp6Address, type IsIp6HexGroup, type IsIpAddress, type IsIso8601DateTime, type IsIsoDate, type IsIsoExplicitDate, type IsIsoImplicitDate, type IsIsoTime, type IsJsDate, type IsLength, type IsLessThan, type IsLessThanOrEqual, type IsLiteral, type IsLiteralFn, type IsLiteralKind, type IsLiteralUnion, type IsLowerAlpha, type IsLuxonDateTime, type IsMoment, type IsNarrowingFn, type IsNegativeNumber, type IsNever, type IsNonEmptyContainer, type IsNonEmptyObject, type IsNonLiteralUnion, type IsNotEqual, type IsNothing, type IsNull, type IsNumber, type IsNumberLike, type IsNumericLiteral, type IsObject, type IsObjectLiteral, type IsOk, type IsOptional, type IsOptionalLiteral, type IsOptionalScalar, type IsPhoneNumber, type IsPositiveNumber, type IsReadonlyArray, type IsReadonlyObject, type IsRequired, type IsResult, type IsScalar, type IsSingleChar, type IsSingleSided, type IsSingularNoun, type IsStrictPromise, type IsString, type IsStringLiteral, type IsSymbol, type IsThenable, type IsTrue, type IsTruthy, type IsTuple, type IsUndefined, type IsUnion, type IsUnionArray, type IsUnset, type IsUrl, type IsValidDotPath, type IsValidIndex, type IsVariable, type IsVisaMastercard, type IsVueRef, type IsWideContainer, type IsWideNumber, type IsWideScalar, type IsWideString, type IsWideType, type IsWideUnion, type Iso3166Alpha2Lookup, type Iso3166Alpha3Lookup, type Iso3166CodeLookup, type Iso3166CountryLookup, type Iso3166_1_Alpha2, type Iso3166_1_Alpha3, type Iso3166_1_CountryCode, type Iso3166_1_CountryName, type Iso3166_1_Lookup, type Iso3166_1_Token, type Iso8601, type Iso8601Date, type Iso8601DateTime, type Iso8601Time, type Iso8601Year, type ItalianNewsCompanies, type ItalianNewsUrls, JAPANESE_NEWS$2 as JAPANESE_NEWS, type JapaneseNewsCompanies, type JapaneseNewsUrls, type Jcb, type Join, type Joiner, type JsonValue, type JsonValues, type JustFunction, KROGER_DNS$2 as KROGER_DNS, type KebabCase, type KebabKeys, type KeyOf, type KeyValue, type KeyframeApi, type Keys, type KeysEqualValue, type KeysNotEqualValue, type KeysOverlap, type KeysUnion, type KeysWithValue, type KeysWithoutValue, type KindFrom, type KlassMeta, type KrogerUrl, type KvFn, type KvFnDefn, type KvTuple, LITERAL_TYPE_KINDS$1 as LITERAL_TYPE_KINDS, LOWER_ALPHA_CHARS$2 as LOWER_ALPHA_CHARS, LOWES_DNS$2 as LOWES_DNS, LUMINOSITY_METRICS_LOOKUP$2 as LUMINOSITY_METRICS_LOOKUP, type Last, type LastChar, type LastInUnion$1 as LastInUnion, type LastOfEach, type LeadingNonAlpha, type Left, type LeftContains, type LeftDoubleMark, type LeftEquals, type LeftExtends, type LeftHeavyDoubleTurned, type LeftHeavySingleTurned, type LeftIncludes, type LeftLowDoublePrime, type LeftReversedDoublePrime, type LeftRight, type LeftRight__Operations, type LeftSingleMark, type LeftWhitespace, type Length, type LessThan, type LessThanOrEqual$1 as LessThanOrEqual, type LifoQueue, type LikeRegExp, type List, type LiteralFn, type LocalPhoneNumber, type LoggingOptions, type LogicFunction, type LogicalCombinator, type LogicalReturns, type LowerAllCaps, type LowerAlphaChar, type LowesUrl, type Luminosity, type LuminosityMetrics, type LuminosityUom, type LuxonJs, MACYS_DNS$2 as MACYS_DNS, MARKED$2 as MARKED, MASS_METRICS_LOOKUP$2 as MASS_METRICS_LOOKUP, MEXICAN_NEWS$2 as MEXICAN_NEWS, MIME_TYPES, MONTH_ABBR$1 as MONTH_ABBR, MONTH_NAME$1 as MONTH_NAME, type MacysUrl, type Maestro, type MakeKeysOptional, type MakeKeysRequired, type MakePropsMutable, type ManyToMany, type ManyToOne, type ManyToZero, type MapCard, MapCardinality, type MapCardinalityFrom, type MapCardinalityIllustrated, type MapConfig, type MapCoverage, type MapError, type MapFn, type MapFnInput, type MapFnOutput, type MapIR, type MapInput, type MapInputFrom, type MapKeyDefn, type MapOR, type MapOutput, type MapOutputFrom, type MapTo, type MapValueDefn, type Mapper, type MapperApi, type MapperOld, type Marked$5 as Marked, type Mass, type MassMetrics, type MassUom, type Mastercard, type MaxLength, type MaybeError, type MaybeRef, type Merge, type MergeKVs, type MergeObjects, type MergeScalars, type MergeTuples, type Metric, type MetricCategory, type MetricTypeGuard, type MexicanNewsCompanies, type MexicanNewsUrls, type MilitaryHours, type MilitaryTime, type MilitaryTimeOptions, type Milliseconds, type Minutes, type MomentJs, type MonthAbbr, type MonthAbbrThenDate, type MonthAbbrThenDateAndYear, type MonthDay, type MonthName, type MonthNumeric, type MonthPostfix, type MonthThenDate, type MonthThenDateThenYear, type MonthThenDate_Simple, type MultiChoiceCallback, type MultipleChoice, type Mutable, type MutableProps, type MutablePropsExclusive, NARROW_CONTAINER_TYPE_KINDS$1 as NARROW_CONTAINER_TYPE_KINDS, NETWORK_PROTOCOL, NETWORK_PROTOCOL_INSECURE, NETWORK_PROTOCOL_LOOKUP$2 as NETWORK_PROTOCOL_LOOKUP, NETWORK_PROTOCOL_SECURE, NIKE_DNS$2 as NIKE_DNS, NON_ZERO_NUMERIC_CHAR$2 as NON_ZERO_NUMERIC_CHAR, NORWEGIAN_NEWS$2 as NORWEGIAN_NEWS, NOT_APPLICABLE$1 as NOT_APPLICABLE, NOT_DEFINED$1 as NOT_DEFINED, NO_DEFAULT_VALUE$2 as NO_DEFAULT_VALUE, NUMERIC_CHAR$2 as NUMERIC_CHAR, NUMERIC_DIGIT$1 as NUMERIC_DIGIT, type NamedColor, type NamedColorMinimal, type NamedColor_Blue, type NamedColor_Brown, type NamedColor_Cyan, type NamedColor_Gray, type NamedColor_Green, type NamedColor_Orange, type NamedColor_Pink, type NamedColor_Purple, type NamedColor_Red, type NamedColor_White, type NamedColor_Yellow, type NamedDynamicSegment, type NamingConvention, type Narrow$1 as Narrow, type NarrowDictProps, type NarrowObject, type Narrowable, type NarrowableDefined, type NarrowableScalar, type NarrowingFn, type NarrowlyContains, type NegDelta, type Negative, type NetworkConfig, type NetworkDefinition, type NetworkProtocol, type NetworkProtocolPrefix, Never, type NewsUrls, type NextDigit, type NikeUrl, type NoDefaultValue$2 as NoDefaultValue, type NonAlphaChar, type NonArray, type NonNumericKeys, type NonStringKeys, type NonZeroNumericChar, type NorwegianNewsCompanies, type NorwegianNewsUrls, type Not, type NotApplicable$1 as NotApplicable, type NotDefined$1 as NotDefined, type NotEqual, type NotLength, type NotNull, type Nothing, type NpmVersion, type NumberLike, type NumericChar, type NumericCharOneToFive, type NumericCharOneToFour, type NumericCharOneToThree, type NumericCharOneToTwo, type NumericCharZeroToFive, type NumericCharZeroToFour, type NumericCharZeroToOne, type NumericCharZeroToThree, type NumericCharZeroToTwo, type NumericComparatorOperation, type NumericKeys, type NumericRange, type NumericSign, type NumericSort, type NumericSupportOptions, OPTION, type ObjKeyDefn, type ObjectApiCallback, type ObjectKey, type ObjectMap, type ObjectMapConversion, type ObjectMapper, type ObjectMapperCallback, type ObjectToApi, type ObjectToCssString, type ObjectToJsString, type ObjectToJsonString, type ObjectToKeyframeString, type ObjectToTuple, type Ok, type OkFrom, type OldSchoolHtmlElement, type OnPass, type OnPassRemap, type OneToMany, type OneToOne, type OneToZero, type OpeningBracket, type OpeningMark, type OpeningMarkPlus, type Opt$1 as Opt, type OptCr, type OptCrThenIndent, type OptDictProps, type OptModifier, type OptPercent, type OptRequired, type OptSpace, type OptSpace2, type OptSpace4, type OptUrlQueryParameters, type OptWhitespace, type Optional, type OptionalKeys, type OptionalKeysTuple, type OptionalParamFn, type OptionalProps, type OptionalSimpleScalarTokens, type OptionalSpace, type Or, PHONE_COUNTRY_CODES$2 as PHONE_COUNTRY_CODES, PHONE_FORMAT$1 as PHONE_FORMAT, PLURAL_EXCEPTIONS$2 as PLURAL_EXCEPTIONS, PLURAL_EXCEPTIONS_OLD, POWER_METRICS_LOOKUP$2 as POWER_METRICS_LOOKUP, PRESSURE_METRICS_LOOKUP$2 as PRESSURE_METRICS_LOOKUP, PROTOCOL_DEFAULT_PORTS$2 as PROTOCOL_DEFAULT_PORTS, PROXMOX_CT_STATE, type PackageJson, type ParameterlessFn, type ParamsForComparison, type ParseInt, type PartialError, type PartialErrorDefn, type PascalCase, type PascalKeys, type Passthrough, type PathJoin, type PhoneAreaCode, type PhoneCountryCode, type PhoneCountryLookup, type PhoneFormat, type PhoneNumber, type PhoneNumberDelimiter, type PhoneNumberType, type PhoneNumberWithCountryCode, type PhoneShortCode, type PluralExceptions, type Pluralize, type PlusMinus, type Pop, type PortMapping, type PortSpecifierOptions, type Power, type PowerMetrics, type PowerUom, type Prepend, type PrependAll, type Pressure, type PressureMetrics, type PressureUom, type PriorDigit, type PrivateKey, type PrivateKeyOf, type PrivateKeys, type PromiseAll, type PropertyChar, type ProtocolOptions, type ProxyError, type PublicKeyOf, type PublicKeys, type Punctuation, type Push, type QuotationMark, type QuotationMarkPlus, REPO_PAGE_TYPES$1 as REPO_PAGE_TYPES, REPO_SOURCES$2 as REPO_SOURCES, REPO_SOURCE_LOOKUP$3 as REPO_SOURCE_LOOKUP, RESISTANCE_METRICS_LOOKUP$2 as RESISTANCE_METRICS_LOOKUP, RESULT$1 as RESULT, type RawPhoneNumber, type ReadonlyKeys, type ReadonlyProps, type RealizedErr, type RecKeyVariant, type RecVariant, type RecordKeyDefn, type RecordKeyWideTokens, type RecordValueTypeDefn, type ReduceValues, type RegularFn$1 as RegularFn, type Relate, type RelativeUrl, type RemoveEmpty, type RemoveFnProps, type RemoveFromEnd, type RemoveFromStart, type RemoveHttpProtocol, type RemoveIndex, type RemoveIndexKeys, type RemoveMarked, type RemoveNetworkProtocol, type RemoveNever, type RemovePhoneCountryCode, type RemoveStart, type RemoveUndefined, type RemoveUrlPort, type RemoveUrlSource, type Repeat, type Replace, type ReplaceAll, type ReplaceLast, type RepoPageType, type RepoSource, type RepoUrls, type RequireProps, type RequiredKeys, type RequiredKeysTuple, type RequiredProps, type RequiredSimpleScalarTokens, type Resistance, type ResistanceMetrics, type ResistanceUom, type RestEndpoint, type RestMethod, type Result, type ResultApi, type ResultErr, type ResultTuple, type RetailUrl, type Retain, type RetainAfter, type RetainAfterLast, type RetainByProp, type RetainChars, type RetainLiterals, type RetainProps, type RetainUntil, type RetainWhile, type RetainWideTypes, type ReturnTypes, type ReturnValues, type Returns, type ReturnsFalse, type ReturnsTrue, type Reverse, type RgbColor, type RgbaColor, type Right, type RightContains, type RightDoubleMark, type RightEquals, type RightExtends, type RightHeavyDoubleTurned, type RightHeavySingleTurned, type RightIncludes, type RightReversedDoublePrime, type RightSingleMark, type RightWhitespace, type Rtn, type RuntimeUnion, SHAPE_DELIMITER, SHAPE_PREFIXES, SIMPLE_ARRAY_TOKENS$2 as SIMPLE_ARRAY_TOKENS, SIMPLE_CONTAINER_TOKENS, SIMPLE_DICT_TOKENS$2 as SIMPLE_DICT_TOKENS, SIMPLE_DICT_VALUES$2 as SIMPLE_DICT_VALUES, SIMPLE_FN_TOKENS, SIMPLE_MAP_KEYS$2 as SIMPLE_MAP_KEYS, SIMPLE_MAP_TOKENS$2 as SIMPLE_MAP_TOKENS, SIMPLE_MAP_VALUES$2 as SIMPLE_MAP_VALUES, SIMPLE_OPT_SCALAR_TOKENS$2 as SIMPLE_OPT_SCALAR_TOKENS, SIMPLE_SCALAR_TOKENS$2 as SIMPLE_SCALAR_TOKENS, SIMPLE_SET_TOKENS$2 as SIMPLE_SET_TOKENS, SIMPLE_SET_TYPES$2 as SIMPLE_SET_TYPES, SIMPLE_TOKENS, SIMPLE_UNION_TOKENS$2 as SIMPLE_UNION_TOKENS, SINGULAR_NOUN_ENDINGS$1 as SINGULAR_NOUN_ENDINGS, type SKeys, SOCIAL_MEDIA$2 as SOCIAL_MEDIA, SOUTH_KOREAN_NEWS$2 as SOUTH_KOREAN_NEWS, SPANISH_NEWS$2 as SPANISH_NEWS, SPEED_METRICS_LOOKUP$2 as SPEED_METRICS_LOOKUP, SWISS_NEWS$2 as SWISS_NEWS, type Scalar, type ScalarCallback, type ScalarNotSymbol, type Second, type SecondOfEach, type Seconds, type SecretDefinition, type SemanticVersion, type SerializedComma, type SetCandidate, type SetKey, type SetKeyForce, type SetKeyStrict, type SetKeysTo, type Shape, type ShapeApi, ShapeApiImplementation, type ShapeApi__Scalars, type ShapeCallback, type ShapeSuggest, type ShapeTupleOrUnion, type SharedKeys, type Shift, type ShortDate, type SimpleArrayToken, type SimpleContainerToken, type SimpleDictToken, type SimpleMapToken, type SimpleScalarToken, type SimpleSetToken, type SimpleToken, type SimpleType, type SimpleTypeArray, type SimpleTypeDict, type SimpleTypeMap, type SimpleTypeScalar, type SimpleTypeSet, type SimpleTypeUnion, type SimpleUnionToken, type SimplifyObject, type SingleQuote, type SingletonClosure, type SingularNoun$1 as SingularNoun, type SingularNounEnding, type SizingUnits, type Slice, type SmartMark, type SmartMarkPlus, type SnakeCase, type SnakeKeys, type SocialMediaPlatform, type SocialMediaProfileUrl, type SocialMediaUrl, type Solo, type Some, type SomeEqual, type SomeExtend, type Something, type SouthKoreanNewsCompanies, type SouthKoreanNewsUrls, type SpanishNewsCompanies, type SpanishNewsUrls, type SpecialChar, type Speed, type SpeedMetrics, type SpeedUom, type Split, type SplitAlt, type StackFrame, type StackTrace, type StandardMark, type StartingWithTypeGuard, type StartsWith, type StrLen, type StringComparatorOperation, type StringDelimiter, type StringLength, type StringLiteralFromTuple, type StringLiteralTemplate, type StringLiteralToken, type StringLiteralVar, type StringTokenUtilities, type StripAfter, type StripBefore, type StripChars, type StripLeading, type StripLeftNonAlpha, type StripSlash, type StripSurround, type StripSurroundConfigured, type StripTrailing, type StripUntil, type StripWhile, type StrongMap, type StrongMapTransformer, type StrongMapTypes, type StructuredStringType, type Subtract, type Suggest, type SuggestHexadecimal, type SuggestIpAddress, type SuggestNumeric, type Surround, type SurroundWith, type SwissNewsCompanies, type SwissNewsUrls, type SymbolKind, type SyncFunction, TARGET_DNS$2 as TARGET_DNS, TEMPERATURE_METRICS_LOOKUP$2 as TEMPERATURE_METRICS_LOOKUP, TIME_METRICS_LOOKUP$2 as TIME_METRICS_LOOKUP, type TLD, TOP_LEVEL_DOMAINS$1 as TOP_LEVEL_DOMAINS, TT_ATOMICS$2 as TT_ATOMICS, type TT_Atomic, TT_CONTAINERS$2 as TT_CONTAINERS, type TT_Container, TT_DELIMITER$2 as TT_DELIMITER, TT_FUNCTIONS$2 as TT_FUNCTIONS, type TT_Function, TT_KIND_VARIANTS, TT_SETS$2 as TT_SETS, TT_SINGLETONS$2 as TT_SINGLETONS, TT_START$2 as TT_START, TT_STOP$2 as TT_STOP, type TT_Set, type TT_Singleton, TURKISH_NEWS$2 as TURKISH_NEWS, TW_CHROMA$2 as TW_CHROMA, TW_CHROMA_100, TW_CHROMA_200, TW_CHROMA_300, TW_CHROMA_400, TW_CHROMA_50, TW_CHROMA_500, TW_CHROMA_600, TW_CHROMA_700, TW_CHROMA_800, TW_CHROMA_900, TW_CHROMA_950, TW_COLOR_TARGETS$2 as TW_COLOR_TARGETS, TW_HUE$2 as TW_HUE, TW_HUE_NEUTRAL$2 as TW_HUE_NEUTRAL, TW_HUE_STATIC, TW_HUE_VIBRANT$2 as TW_HUE_VIBRANT, TW_LUMINOSITY$2 as TW_LUMINOSITY, TW_LUMIN_100, TW_LUMIN_200, TW_LUMIN_300, TW_LUMIN_400, TW_LUMIN_50, TW_LUMIN_500, TW_LUMIN_600, TW_LUMIN_700, TW_LUMIN_800, TW_LUMIN_900, TW_LUMIN_950, TW_MODIFIERS, TW_MODIFIERS_CORE$2 as TW_MODIFIERS_CORE, TW_MODIFIERS_ORDER$2 as TW_MODIFIERS_ORDER, TW_MODIFIERS_RELN$2 as TW_MODIFIERS_RELN, TW_MODIFIERS_SIZING$2 as TW_MODIFIERS_SIZING, TYPE_COMPARISONS, TYPE_KINDS, TYPE_OF$2 as TYPE_OF, TYPE_TOKEN_REC_KEY_VARIANTS$2 as TYPE_TOKEN_REC_KEY_VARIANTS, TYPE_TOKEN_REC_VARIANTS$2 as TYPE_TOKEN_REC_VARIANTS, TYPE_TOKEN_STRING_SET_VARIANTS$2 as TYPE_TOKEN_STRING_SET_VARIANTS, TYPE_TOKEN_UNION_SET_VARIANTS$2 as TYPE_TOKEN_UNION_SET_VARIANTS, TYPE_TRANSFORMS, type TZ, type TakeFirst, type TakeLast, type TakeProp, type TargetUrl, type Temperature, type TemperatureMetrics, type TemperatureUom, type Thenable, type Throw, type Time, type TimeInMilliseconds, type TimeInMinutes, type TimeInSeconds, type TimeLike, type TimeMetric, type TimeMetrics, type TimeNomenclature, type TimeResolution, type TimeUom, type Timezone, type ToBoolean, type ToCSV, type ToChoices, type ToContainer, type ToFn, type ToInteger, type ToIntegerOp, type ToJsonValue, type ToKeyValueSort, type ToKv, type ToNumber, type ToNumericArray, type ToPhoneFormat, type ToString, type ToStringArray, type ToStringLiteral, type ToUnion, type TokenContainerClosure, type TokenFunctionClosure, type TokenSetClosure, type TokenizeStringLiteral, type Trim, type TrimLeft, type TrimRight, type Truncate$1 as Truncate, type TruncateAtLen, type TruthyReturns, type Tuple, type TupleDefn, type TupleRange, type TupleToUnion, type TurkishNewsCompanies, type TurkishNewsUrls, type TwChroma, type TwChroma100, type TwChroma200, type TwChroma300, type TwChroma400, type TwChroma50, type TwChroma500, type TwChroma600, type TwChroma700, type TwChroma800, type TwChroma900, type TwChroma950, type TwChromaLookup, type TwColor, type TwColorOptionalOpacity, type TwColorTarget, type TwColorWithLuminosity, type TwColorWithLuminosityOpacity, type TwHue, type TwLumi100, type TwLumi200, type TwLumi300, type TwLumi400, type TwLumi50, type TwLumi500, type TwLumi600, type TwLumi700, type TwLumi800, type TwLumi900, type TwLumi950, type TwLuminosity, type TwLuminosityLookup, type TwModifier, type TwModifier__Core, type TwModifier__Order, type TwModifier__Reln, type TwModifier__Size, type TwModifiers, type TwNeutralColor, type TwSizeResponsive, type TwStaticColor, type TwTarget__Color, type TwTarget__ColorLuminosity, type TwTarget__ColorLuminosityWithOpacity, type TwTarget__ColorName, type TwTarget__ColorWithOptPrefixes, type TwTarget__Color__Light, type TwVibrantColor, type Type, type TypeDefaultValue, type TypeDefinition, type TypeDefn, type TypeDefnValidations, type TypeErrorInfo, type TypeGuard, type TypeHasDefaultValue, type TypeHasUnderlying, type TypeHasValidations, type TypeIsRequired, type TypeKind, type TypeKindContainer, type TypeKindContainerNarrow, type TypeKindContainerWide, type TypeKindFalsy, type TypeKindLiteral, type TypeKindWide, type TypeOf, type TypeOfExtended, type TypeOfTypeGuard, type TypeOptions, type TypeRequired, type TypeStrength, type TypeSubtype, type TypeToken, type TypeTokenAtomics, type TypeTokenContainers, type TypeTokenDelimiter, type TypeTokenFunctions, type TypeTokenKind, type TypeTokenLookup, type TypeTokenSets, type TypeTokenSingletons, type TypeTokenStart, type TypeTokenStop, type TypeToken__Boolean, type TypeToken__False, type TypeToken__Fn, type TypeToken__FnSet, type TypeToken__Gen, type TypeToken__Never, type TypeToken__Null, type TypeToken__Number, type TypeToken__NumberSet, type TypeToken__Rec, type TypeToken__String, type TypeToken__StringSet, type TypeToken__True, type TypeToken__Undefined, type TypeToken__UnionSet, type TypeToken__Unknown, type TypeTuple, type TypeUnderlying, type TypedFunction, type TzHourOffset, UK_NEWS$2 as UK_NEWS, UPPER_ALPHA_CHARS$2 as UPPER_ALPHA_CHARS, US_NEWS$2 as US_NEWS, US_STATE_LOOKUP$2 as US_STATE_LOOKUP, US_STATE_LOOKUP_PROVINCES$2 as US_STATE_LOOKUP_PROVINCES, US_STATE_LOOKUP_STRICT, type UkNewsCompanies, type UkNewsUrls, type Unbox, type UndefinedArrayIsUnknown, type UnderlyingType, type UnionArrayToTuple, type UnionClosure, type UnionElDefn, type UnionFilter, type UnionFromProp, type UnionHasArray, type UnionMutate, type UnionMutationOp, type UnionShift, type UnionToIntersection, type UnionToTuple$1 as UnionToTuple, type UnionWithAll, type Unique, type UniqueKeys, type UniqueKeysUnion, type UniqueKv, type UnitType, type Unset, type Uom, type UomTypeGuard, type UpperAlphaChar, type UpsertKeyValue, type Uri, type UrlBuilder, type UrlMeta, type UrlOptions, type UrlPath, type UrlPathChars, type UrlPort, type UrlQueryParameters, type UrlsFrom, type UsNewsCompanies, type UsNewsUrls, type UsPhoneNumber, type UsStateAbbrev, type UsStateName, VOLTAGE_METRICS_LOOKUP$2 as VOLTAGE_METRICS_LOOKUP, VOLUME_METRICS_LOOKUP$2 as VOLUME_METRICS_LOOKUP, type ValidKey, type Validate, type ValidationFunction, type ValueAtDotPath, type ValueCallback, type ValueOrReturnValue, type Values, type Variable, type VariableChar, type Visa, type VisaMastercard, type Voltage, type VoltageMetrics, type VoltageUom, type Volume, type VolumeDefinition, type VolumeMapping, type VolumeMetrics, type VolumeUom, type VueComputedRef, type VueRef, WALGREENS_DNS$2 as WALGREENS_DNS, WALMART_DNS$2 as WALMART_DNS, WAYFAIR_DNS$2 as WAYFAIR_DNS, WHITESPACE_CHARS$2 as WHITESPACE_CHARS, WHOLE_FOODS_DNS$2 as WHOLE_FOODS_DNS, WIDE_CONTAINER_TYPE_KINDS$1 as WIDE_CONTAINER_TYPE_KINDS, WIDE_TYPE_KINDS$1 as WIDE_TYPE_KINDS, type WalgreensUrl, type WalmartUrl, type WayFairUrl, type WeakMapKeyDefn, type WeakMapValueDefn, type WhenNever, type WhereLeft, type Whitespace, type WholeFoodsUrl, WideAssignment, type WideContainerNames, type WideTokenNames, type WideTypeName, type Widen, type WidenContainer, type WidenLiteral, type WidenScalar, type WidenTuple, type WidenUnion, type WidenValues, type WithDefault, type WithKeys, type WithNumericKeys, type WithStringKeys, type WithValue, type WithoutKeys, type WithoutValue, type WrapperFn, type YMD, type Year, type YouTubeCreatorUrl, type YouTubeEmbedUrl, type YouTubeFeedType, type YouTubeFeedUrl, type YouTubeHistoryUrl, type YouTubeHome, type YouTubeLikedPlaylistUrl, type YouTubeMeta, type YouTubePageType, type YouTubePlaylistUrl, type YouTubeShareUrl, type YouTubeSubscriptionsUrl, type YouTubeUrl, type YouTubeUsersPlaylistUrl, type YouTubeVideoUrl, type YouTubeVideosInPlaylist, ZARA_DNS$2 as ZARA_DNS, ZIP_TO_STATE$1 as ZIP_TO_STATE, type ZaraUrl, type Zero, type ZeroToMany, type ZeroToOne, type ZeroToZero, type Zip5, type ZipCode, type ZipPlus4, type ZipToState, addFnToProps, addPropsToFn, and, asApi, asArray, asChars, asDate, asEscapeFunction, asIsoDate, asOptionalParamFunction, asPhoneFormat, asRecord, asString, asStringLiteral, asType, asTypeToken, asVueRef, box, boxDictionaryValues, capitalize, cardType, choices, createConstant, createConverter, createCssKeyframe, createCssSelector, createErrorCondition, createFifoQueue, createFixedLengthArray, createFnWithProps, createFnWithPropsExplicit, createLifoQueue, createMapper, createObjectMap, createTypeToken, cssColor, cssFromDefinition, csv, defineCss, defineObj, defineObject, defineObjectApi, defineTuple, doesExtend, endsWith, ensureLeading, ensureSurround, ensureTrailing, entries, errCondition, filter, filterEmpty, filterUndefined, find, fnMeta, fromDefineObject, fromKeyValue, get, getDaysBetween, getEach, getPhoneCountryCode, getTailwindModifiers, getToday, getTokenKind, getTomorrow, getTypeSubtype, getUrlBase, getUrlDefaultPort, getUrlDynamics, getUrlPath, getUrlPort, getUrlProtocol, getUrlQueryParams, getUrlSource, getWeekNumber, getYesterday, getYouTubePageType, handleDoneFn, hasCountryCode, hasDefaultValue, hasHtml, hasIndexOf, hasKeys, hasOverlappingKeys, hasProtocol, hasProtocolPrefix, hasUrlPort, hasUrlQueryParameter, hasValidHtml, hasWhiteSpace, idLiteral, idTypeGuard, identity, ifArray, ifArrayPartial, ifBoolean, ifChar, ifContainer, ifDefined, ifFalse, ifFunction, ifHasKey, ifLength, ifLowercaseChar, ifNotNull, ifNull, ifNumber, ifObject, ifSameType, ifScalar, ifString, ifTrue, ifUndefined, ifUppercaseChar, indexOf, infer, intersect, intersection, ip6GroupExpansion, ip6Prefix, isAccelerationMetric, isAccelerationUom, isAlpha, isAmazonUrl, isAmericanExpress, isApi, isApiSurface, isAppleUrl, isAreaMetric, isAreaUom, isArray, isArrayToken, isAtomicKind, isAtomicToken, isAustralianNewsUrl, isBelgiumNewsUrl, isBestBuyUrl, isBitbucketUrl, isBoolean, isBooleanLike, isBox, isCanadianNewsUrl, isChineseNewsUrl, isCodeCommitUrl, isConstant, isContainer, isContainerToken, isCostCoUrl, isCountryAbbrev, isCountryCode2, isCountryCode3, isCountryName, isCreditCard, isCssAspectRatio, isCsv, isCurrentMetric, isCurrentUom, isCvsUrl, isDanishNewsUrl, isDate, isDefineObject, isDefined, isDellUrl, isDistanceMetric, isDistanceUom, isDomainName, isDoneFn, isDutchNewsUrl, isEbayUrl, isEmail, isEmpty, isEnergyMetric, isEnergyUom, isEqual, isErrorCondition, isEscapeFunction, isEtsyUrl, isFalse, isFalsy, isFnBasedKind, isFnBasedToken, isFnWithParams, isFrenchNewsUrl, isFrequencyMetric, isFrequencyUom, isFunction, isGermanNewsUrl, isGithubIssueUrl, isGithubIssuesListUrl, isGithubOrgUrl, isGithubProjectUrl, isGithubProjectsListUrl, isGithubReleaseTagUrl, isGithubReleasesListUrl, isGithubRepoReleaseTagUrl, isGithubRepoReleasesUrl, isGithubRepoUrl, isGithubUrl, isHexadecimal, isHmUrl, isHomeDepotUrl, isHtml, isHtmlComponentTag, isHtmlElement, isIkeaUrl, isIndexable, isIndianNewsUrl, isInlineSvg, isIp4Address, isIp6Address, isIpAddress, isIso3166Alpha2, isIso3166Alpha3, isIso3166CountryCode, isIso3166CountryName, isIsoDate, isIsoDateTime, isIsoExplicitDate, isIsoExplicitTime, isIsoImplicitDate, isIsoImplicitTime, isIsoTime, isIsoYear, isItalianNewsUrl, isJapaneseNewsUrl, isKrogersUrl, isLeapYear, isLength, isLikeRegExp, isLowesUrl, isLuminosityMetric, isLuminosityUom, isLuxonDateTime, isMacysUrl, isMap, isMapToken, isMassMetric, isMassUom, isMastercard, isMetric, isMetricCategory, isMexicanNewsUrl, isMoment, isNarrowableObject, isNever, isNewsUrl, isNikeUrl, isNorwegianNewsUrl, isNotEmpty, isNotNull, isNothing, isNull, isNumber, isNumberLike, isNumericArray, isNumericString, isObject, isObjectToken, isOptionalParamFunction, isPhoneNumber, isPowerMetric, isPowerUom, isPressureMetric, isPressureUom, isProtocol, isProtocolPrefix, isReadonlyArray, isRecordToken, isRef, isRegExp, isRepoSource, isRepoUrl, isResistanceMetric, isResistanceUom, isRetailUrl, isSameTypeOf, isScalar, isSemanticVersion, isSet, isSetBasedKind, isSetBasedToken, isSetContainer, isSetToken, isShape, isShapeCallback, isSimpleContainerToken, isSimpleContainerTokenTuple, isSimpleScalarToken, isSimpleScalarTokenTuple, isSimpleToken, isSimpleTokenTuple, isSingletonKind, isSingletonToken, isSocialMediaProfileUrl, isSocialMediaUrl, isSouthKoreanNewsUrl, isSpanishNewsUrl, isSpecificConstant, isSpeedMetric, isSpeedUom, isString, isStringArray, isSwissNewsUrl, isSymbol, isTailwindColor, isTailwindColorClass, isTailwindColorName, isTailwindColorTarget, isTailwindColorWithLuminosity, isTailwindColorWithLuminosityAndOpacity, isTailwindModifier, isTargetUrl, isTemperatureMetric, isTemperatureUom, isThenable, isThisMonth, isThisWeek, isThisYear, isTimeMetric, isTimeUom, isToday, isTomorrow, isTrimable, isTrue, isTruthy, isTuple, isTupleToken, isTurkishNewsUrl, isTypeOf, isTypeSubtype, isTypeToken, isTypeTokenKind, isTypeTuple, isUkNewsUrl, isUndefined, isUnset, isUom, isUomCategory, isUri, isUrl, isUrlPath, isUrlSource, isUsNewsUrl, isUsPhoneNumber, isUsStateAbbreviation, isUsStateName, isValidAtomicTag, isValidBlockTag, isValidHtml, isValidHtmlTag, isVariable, isVisa, isVisaMastercard, isVoltageMetric, isVoltageUom, isVolumeMetric, isVolumeUom, isVueRef, isWalgreensUrl, isWalmartUrl, isWayfairUrl, isWholeFoodsUrl, isYesterday, isYouTubeCreatorUrl, isYouTubeFeedHistoryUrl, isYouTubeFeedUrl, isYouTubePlaylistUrl, isYouTubePlaylistsUrl, isYouTubeShareUrl, isYouTubeSubscriptionsUrl, isYouTubeTrendingUrl, isYouTubeUrl, isYouTubeVideoUrl, isYouTubeVideosInPlaylist, isZaraUrl, isZipCode, isZipCode5, isZipPlus4, joinWith, jsonValue, jsonValues, keysOf, kindLiteral, last, list, literal, logicalReturns, lookupCountryAlpha2, lookupCountryAlpha3, lookupCountryCode, lookupCountryName, lowercase, maybePhoneNumber, mergeObjects, mergeScalars, mergeTuples, nameLiteral, narrow, narrowObjectTo, narrowObjectToType, never, objectToApi, objectValues, omit, optional, optionalOrNull, or, orNull, pathJoin, pluralize, removePhoneCountryCode, removeTailwindModifiers, removeUrlProtocol, result, retain, retainAfter, retainAfterInclusive, retainChars, retainUntil, retainUntilInclusive, retainWhile, reverse, rightWhitespace, shape, sharedKeys, shift, simpleContainerToken, simpleContainerTokenToTypeToken, simpleContainerType, simpleScalarToken, simpleScalarTokenToTypeToken, simpleScalarType, simpleToken, simpleType, simpleUnionTokenToTypeToken, slice, split, startsWith, stripAfter, stripBefore, stripChars, stripLeading, stripParenthesis, stripSurround, stripTrailing, stripUntil, stripWhile, surround, takeNumericCharacters, takeProp, toCamelCase, toKebabCase, toKeyValue, toNumber, toNumericArray, toPascalCase, toSnakeCase, toString, toUppercase, trim, trimEnd, trimLeft, trimRight, trimStart, truncate, tuple, twColor, unbox, uncapitalize, union, unionize, unique, uniqueKeys, unset, uppercase, urlMeta, validHtmlAttributes, valuesOf, widen, withDefaults, withKeys, withValue, withoutKeys, withoutValue, wrapFn, youtubeEmbed, youtubeMeta };
|
|
39237
|
+
export { ACCELERATION_METRICS_LOOKUP$2 as ACCELERATION_METRICS_LOOKUP, ALPHA_CHARS, AMAZON_BOOKS, AMAZON_DNS$2 as AMAZON_DNS, APPLE_DNS$2 as APPLE_DNS, AREA_METRICS_LOOKUP$2 as AREA_METRICS_LOOKUP, AUSTRALIAN_NEWS$2 as AUSTRALIAN_NEWS, type Abs, type AbsMaybe, type Acceleration, type AccelerationMetrics, type AccelerationUom, type Add, type AddKeyValue, type AddUrlPathSegment, type AfterFirst, type AfterFirstChar, type AllCaps, type AllExtend, type AllLiteral, type AllNumericLiterals, type AllStringLiterals, type AllowNonTupleWhenSingular, type Alpha, type AlphaChar, type AlphaNumeric, type AlphaNumericChar, type AmPm, type AmPmCase, type AmazonUrl, type AmericanExpress, type And, type AnyArray, type AnyFunction, type AnyObject, type AnyQueryParams, type Api, type ApiCallback, type ApiConfig, type ApiEscape, type ApiHandler, type ApiOptions, type ApiReturn, type ApiState, type ApiStateInitializer, type ApiSurface, type AppendRight, type AppleUrl, type AreSameLength, type AreSameType, type Area, type AreaMetrics, type AreaUom, type AriaDocStructureRoles, type AriaLandmarkRoles, type AriaLiveRegionRoles, type AriaRole, type AriaWidgetRoles, type AriaWindowRoles, type ArrayElementType, type ArrayTypeDefn, type As, type AsApi, type AsArray, type AsBoolean, type AsChoice, type AsClassSelector, type AsContainer, type AsDefined, type AsDictionary, type AsDoneFn, type AsErr, type AsErrKind, type AsError, type AsError__Meta, type AsEscapeFunction, type AsFinalizedConfig, type AsFnMeta, type AsFunction, type AsHtmlComponentTag, type AsHtmlTag, type AsIndexOf, type AsIp6Prefix, type AsLeft, type AsLeftRight, type AsList, type AsLiteralFn, type AsNarrowingFn, type AsNegativeNumber, type AsNonNull, type AsNumber, type AsNumberWhenPossible, type AsNumericArray, type AsObject, type AsObjectKey, type AsObjectKeys, type AsOptionalParamFn, type AsPropertyKey, type AsRecord, type AsRef, type AsRight, type AsSomething, type AsString, type AsStringLiteral, type AsStringUnion, type AsToken, type AsTokenOpt, type AsTuple, type AsType, type AsUnion, type AsVueComputedRef, type AsyncFunction, type AustralianNewsCompanies, type AustralianNewsUrls, type AvailableConverters, type Awaited$1 as Awaited, BELGIUM_NEWS$2 as BELGIUM_NEWS, BEST_BUY_DNS$2 as BEST_BUY_DNS, BLOOD_MARKERS_LOOKUP, type BareCssSelector, type BaseTypeToken, type BeforeLast, type BelgianNewsCompanies, type BelgianNewsUrls, type BespokeLiteral, type BespokeUnion, type BestBuyUrl, type BooleanLike, type Box, type BoxValue, type BoxedFnParams, type Bracket, type Branded, type Break, type BuildDefinition, CANADIAN_NEWS$2 as CANADIAN_NEWS, CHEWY_DNS$2 as CHEWY_DNS, CHINESE_NEWS$2 as CHINESE_NEWS, COMMA, COMMON_OBJ_PROPS, CONSONANTS$2 as CONSONANTS, COSTCO_DNS$2 as COSTCO_DNS, CSS_NAMED_COLORS$2 as CSS_NAMED_COLORS, type CSV, CURRENT_METRICS_LOOKUP$2 as CURRENT_METRICS_LOOKUP, CVS_DNS$2 as CVS_DNS, type Callback, type CamelCase, type CamelKeys, type CanadianNewsCompanies, type CanadianNewsUrls, type CapFirstAlpha, type CapitalizeEachUnionMember, type CapitalizeWords, type Cardinality, type Cardinality0, type Cardinality1, type CardinalityExplicit, type CardinalityFilter0, type CardinalityFilter1, type CardinalityIn, type CardinalityInput, type CardinalityNode, type CardinalityOut, type CargoDependency, type CargoToml, type Chars, type ChewyUrl, type ChineseNewsCompanies, type ChineseNewsUrls, type Choice, type ChoiceApi, type ChoiceApiConfig, type ChoiceApiOptions, type ChoiceBuilder, type ChoiceCallback, type ChoiceValue, type CivilianHours, type CivilianTime, type CivilianTimeOptions, type ClosingBracket, type ClosingMark, type ClosingMarkPlus, type ColorFnOptOpacity, type ColorFnValue, type ColorParam, type CombinedKeys, type CommonHtmlElement, type CommonObjProps, type ComparatorOperation, type Compare$1 as Compare, type Comparison, type CompleteError, type Concat, type ConfigDefinition, type ConfigRestApi, type ConfiguredMap, type Consonant, type Consonants, type Constant$3 as Constant, type ConstrainObject, type ConstrainedObjectCallback, type ConstrainedObjectIdentity, type Constructor, type Container, type ContainerBlockKey, type ContainerKeyGuarantee, type Contains, type ContainsAll, type ContainsSome, type Conversion, type ConversionTuple, type ConvertSet, type ConvertTypeOf, type ConvertWideTokenNames, type ConverterCoverage, type ConverterDefn, type CostCoUrl, type CostcoUrl, type CountryPhoneNumber, type Cr, type CrThenIndent, type CreateChoice, type CreateDictHash, type CreateDictShape, type CreateKV, type CreateLookup, type CreditCard, type CssAbsolutionPositioningProperties, type CssAlignContent, type CssAlignItems, type CssAlignProperties, type CssAlignSelf, type CssAnimation, type CssAnimationComposition, type CssAnimationDelay, type CssAnimationDirection, type CssAnimationDuration, type CssAnimationFillMode, type CssAnimationIterationCount, type CssAnimationPlayState, type CssAnimationProperties, type CssAnimationTimingFunction, type CssAppearance, type CssAspectRatio, type CssBackdropFilter, type CssBackgroundProperties, type CssBorderCollapse, type CssBorderImageRepeat, type CssBorderImageSource, type CssBorderInlineSizing, type CssBorderProperties, type CssBorderStyle, type CssBorderWidth, type CssBoxAlign, type CssBoxDecorationBreak, type CssBoxProperties, type CssBoxShadow, type CssBoxSizing, type CssCalc, type CssClamp, type CssClassSelector, type CssColor, type CssColorFn, type CssColorLight, type CssColorMix, type CssColorMixLight, type CssColorModel, type CssColorSpace, type CssColorSpacePrimary, type CssContent, type CssCursor, type CssDefinition, type CssDisplay, type CssDisplayStatePseudoClasses, type CssFlex, type CssFlexBasis, type CssFlexDirection, type CssFlexFlow, type CssFlexGrow, type CssFlexShrink, type CssFloat, type CssFontFamily, type CssFontFeatureSetting, type CssFontKerning, type CssFontLanguageOverride, type CssFontPalette, type CssFontProperties, type CssFontStyle, type CssFontSynthesis, type CssFontWeight, type CssFontWidth, type CssFromDefnOption, type CssFunctionalPseudoClass, type CssGap, type CssGlobal, type CssHangingPunctuation, type CssHexColor, type CssHsb, type CssHsl, type CssIdSelector, type CssImageOrientation, type CssImageRendering, type CssImageResolution, type CssInputPseudoClasses, type CssJustifyContent, type CssJustifyItems, type CssJustifyProperties, type CssJustifySelf, type CssKeyframeCallback, type CssKeyframeTimestamp, type CssKeyframeTimestampSuggest, type CssLetterSpacing, type CssLinguisticPseudoClasses, type CssListStyle, type CssLocationPseudoClasses, type CssMargin, type CssMarginBlock, type CssMarginBlockEnd, type CssMarginBlockStart, type CssMarginBottom, type CssMarginInline, type CssMarginInlineEnd, type CssMarginInlineStart, type CssMarginLeft, type CssMarginProperties, type CssMarginRight, type CssMarginTop, type CssMixBlendMode, type CssNamedColors, type CssNamedSizes, type CssObjectFit, type CssObjectPosition, type CssOffsetDistance, type CssOffsetPath, type CssOffsetPosition, type CssOffsetProperties, type CssOkLch, type CssOpacity, type CssOutline, type CssOutlineColor, type CssOutlineOffset, type CssOutlineProperties, type CssOutlineStyle, type CssOutlineWidth, type CssOverflowAnchor, type CssOverflowBlock, type CssOverflowClipMargin, type CssOverflowInline, type CssOverflowProperties, type CssOverflowX, type CssOverflowY, type CssPadding, type CssPaddingBlock, type CssPaddingBlockEnd, type CssPaddingBlockStart, type CssPaddingBottom, type CssPaddingInline, type CssPaddingInlineEnd, type CssPaddingInlineStart, type CssPaddingLeft, type CssPaddingProperties, type CssPaddingRight, type CssPaddingTop, type CssPerspectiveOrigin, type CssPlaceContent, type CssPlaceItems, type CssPlaceProperties, type CssPlaceSelf, type CssPointerEvent, type CssPosition, type CssProperty, type CssPseudoClass, type CssPseudoClassDefn, type CssResourceStatePseudoClasses, type CssRgb, type CssRgba, type CssRotation, type CssRound, type CssSelector, type CssSelectorOptions, type CssSizing, type CssSizingFunction, type CssSizingLight, type CssStroke, type CssStrokeDasharray, type CssStrokeProperties, type CssTagSelector, type CssTextAlign, type CssTextDecorationLine, type CssTextDecorationStyle, type CssTextIndent, type CssTextJustify, type CssTextOrientation, type CssTextOverflow, type CssTextPosition, type CssTextProperties, type CssTextRendering, type CssTextTransform, type CssTextWrap, type CssTextWrapMode, type CssTextWrapStyle, type CssTimePseudoClasses, type CssTiming, type CssTransform, type CssTransformBox, type CssTransformOrigin, type CssTransformProperties, type CssTransformStyle, type CssTranslate, type CssTranslateFn, type CssTreePseudoClasses, type CssUserActionPseudoClasses, type CssVar, type CssVarWithFallback, type CssWhiteSpace, type CssWhiteSpaceCollapse, type CssWordBreak, type CssWritingMode, type Csv, type CsvFormat, type CsvToJsonTuple, type CsvToStrUnion, type CsvToTuple, type CsvToTupleStr, type CsvToUnion, type Current, type CurrentMetrics, type CurrentUom, type CvsUrl, DANISH_NEWS$2 as DANISH_NEWS, DEFAULT_MANY_TO_ONE_MAPPING, DEFAULT_ONE_TO_MANY_MAPPING, DEFAULT_ONE_TO_ONE_MAPPING, DELL_DNS$2 as DELL_DNS, DISTANCE_METRICS_LOOKUP$2 as DISTANCE_METRICS_LOOKUP, DUTCH_NEWS$2 as DUTCH_NEWS, type DanishNewsCompanies, type DanishNewsUrls, type DashToSnake, type DashUppercase, type Date$2 as Date, type DateSeparator, type DateThenMonth, type DateThenMonthThenYear, type DateTime, type DateTimeMinutes, type DateTimeSeconds, type DayOfWeek, type DayofWeekFull, type DecomposeMapConfig, type Decrement, type Default, type DefaultManyToOneMapping, type DefaultOneToManyMapping, type DefaultOneToOneMapping, type DefineObject, type DefineObjectApi, type DefineStatelessApi, type Defined, type DellUrl, type Delta, type DeployConfig, type DialCountryCode, type Dict, type DictArray, type DictArrayFilterCallback, type DictArrayKv, type DictChangeValue, type DictKvTuple, type Dictionary, type DictionaryTypeDefn, type DictionaryWithValueFilter, type DictionaryWithoutValueFilter, type Digit, type DigitNonZero, type Digital, type DigitalLiteral, type Digitize, type DinersClub, type Discover, type Distance, type DistanceMetrics, type DistanceUom, type DnsName, type DockerCompose, type DockerDependsOn, type DockerService, type DoesExtend, type DoesExtendTypeguard, type DoesNotExtend, type DomainName, type DoneFnTuple, type DotPathFor, type DoubleQuote, type DropChars, type DutchNewsCompanies, type DutchNewsUrls, type DynamicSegment, EBAY_DNS$2 as EBAY_DNS, ENERGY_METRICS_LOOKUP$2 as ENERGY_METRICS_LOOKUP, ETSY_DNS$2 as ETSY_DNS, type EbayUrl, type ElementOf, type Email, type Empty, type EmptyObject, type EmptyString, type EmptyStringOr, type EndingWithTypeGuard, type EndpointGenerator, type EndsWith, type Energy, type EnergyMetrics, type EnergyUom, type EnsureKeys, type EnsureLeading, type EnsureLeadingEvery, type EnsureSurround, type EnsureTrailing, type EqualTo, type Equals, type Err, type ErrFrom, type ErrInput, type ErrMsg, type ErrorCondition, type ErrorConditionHandler, type ErrorConditionShape, type EscapeFunction, type EsotericHtmlElement, type EtsyUrl, type EveryLength, type Exif, type ExifAttributionInfo, type ExifCameraInfo, ExifCompression, ExifContrast, type ExifDateTimeInfo, ExifEmbedPolicy, type ExifExtraneous, ExifFlashValues, ExifGainControl, type ExifGps, ExifLightSource, type ExifPhotoContext, ExifPreviewColorSpace, ExifSaturation, ExifSceneCaptureType, ExifSharpness, ExifSubjectDistance, type ExpandDictionary, type ExpandRecursively, type ExpandTuple, type ExpandUnion, type ExplicitlyEmptyObject, type Extends, type ExtendsAll, type ExtendsNone, type ExtendsSome, FALSY_TYPE_KINDS$1 as FALSY_TYPE_KINDS, FALSY_VALUES, FRENCH_NEWS$2 as FRENCH_NEWS, FREQUENCY_METRICS_LOOKUP$2 as FREQUENCY_METRICS_LOOKUP, type Fail, type FalsyValue, type FifoQueue, type Filter, type FilterByProp, type FilterLiterals, type FilterProps, type FilterWideTypes, type FinalizedMapConfig, type Find, type FindFirstIndex, type FindIndexMetaOfString, type FindIndexMetaOfTuple, type FindIndexes, type FindIndexesWithMeta, type FindLastIndex, type Finder, type First, type FirstChar, type FirstKey, type FirstKeyValue, type FirstOfEach, type FirstString, type FixedLengthArray, type Flatten, type FlattenUnion, type FluentApi, type FluentFn, type FluentState, type FnAllowingProps, type FnArgsDefn, type FnDefn, type FnFrom, type FnMeta, type FnParam, type FnParams, type FnPropertiesDefn, type FnProps, type FnReturnTypeDefn, type FnWithDescription, type FnWithProps, type FrenchNewsCompanies, type FrenchNewsUrls, type Frequency, type FrequencyMetrics, type FrequencyUom, type FromDefineObject, type FromDefn, type FromDictArray, type FromDynamicSegment, type FromKeyValueTuple, type FromKv, type FromLiteralTokens, type FromMaybeRef, type FromNamedDynamicSegment, type FromRecordKeyDefn, type FromShapeCallback, type FromSimpleRecordKey, type FromSimpleToken, type FromTypeDefn, type FromWideTokens, type FullDate, type FullWidthQuotation, type FullyQualifiedUrl, GERMAN_NEWS$2 as GERMAN_NEWS, GITHUB_INSIGHT_CATEGORY_LOOKUP$1 as GITHUB_INSIGHT_CATEGORY_LOOKUP, type GenParam, type GenParams, type GermanNewsCompanies, type GermanNewsUrls, type Get$1 as Get, type GetDefaultPort, type GetEach, type GetEachOptions, type GetEscapeFunction, type GetInference, type GetInferenceProps, type GetOptions, type GetPhoneCountryCode, type GetPhoneNumberType, type GetQueryParameterDynamics, type GetTypeOf, type GetUrlDynamics, type GetUrlPath, type GetUrlPathDynamics, type GetUrlPort, type GetUrlProtocol, type GetUrlProtocolPrefix, type GetUrlQueryParams, type GetUrlSource, type GetYouTubePageType, type GitRef, type GithubActionsUrl, type GithubInsightPageType, type GithubInsightUrl, type GithubOrgUrl, type GithubRepoBranchesUrl, type GithubRepoDiscussionUrl, type GithubRepoDiscussionsUrl, type GithubRepoIssueUrl, type GithubRepoIssuesListUrl, type GithubRepoProjectUrl, type GithubRepoProjectsUrl, type GithubRepoPullRequestUrl, type GithubRepoPullRequestsUrl, type GithubRepoReleaseTagUrl, type GithubRepoReleasesUrl, type GithubRepoTagsUrl, type GithubRepoUrl, type GithubUrl, HASH_TABLE_ALPHA_LOWER, HASH_TABLE_ALPHA_UPPER, HASH_TABLE_CHAR, HASH_TABLE_DIGIT, HASH_TABLE_OTHER, HASH_TABLE_SPECIAL, HASH_TABLE_WIDE, HM_DNS$2 as HM_DNS, HOME_DEPOT_DNS$2 as HOME_DEPOT_DNS, HTML_ATOMIC_TAGS$2 as HTML_ATOMIC_TAGS, HTML_BLOCK_TAGS$2 as HTML_BLOCK_TAGS, type HandMUrl, type Handle, type HandleDoneFn, type HasArray, type HasCharacters, type HasEscapeFunction, type HasIndex, type HasIpAddress, type HasNetworkProtocolReference, type HasOtherCharacters, type HasParameters, type HasPhoneCountryCode, type HasProp, type HasQueryParameter, type HasRequiredProps, type HasSameKeys, type HasSameValues, type HasUnionType, type HasUppercase, type HasUrlPath, type HasUrlSource, type HasWideValues, type HaveSameNumericSign, type Healthcheck, type HexColor, type Hexadecimal, type HexadecimalChar, type HomeDepotUrl, type HoursMinutes, type HoursMinutes12, type HoursMinutesSeconds, type HoursMinutesSeconds12, type HoursMinutesSecondsMilliseconds, type HoursMinutesSecondsMilliseconds12, type HtmlBodyElement, type HtmlElement, type HtmlFrameworkElement, type HtmlFunctionalElement, type HtmlHeaderElement, type HtmlInputElement, type HtmlListElement, type HtmlMediaElement, type HtmlStructuralElement, type HtmlSymantecElement, type HtmlTableElement, type HtmlTag, type HtmlTagAtomic, type HtmlTagClose, type HtmlTagOpen, type Html__AtomicTag, type Html__BlockTag, IKEA_DNS$2 as IKEA_DNS, IMAGE_FORMAT_LOOKUP$1 as IMAGE_FORMAT_LOOKUP, INDIAN_NEWS$2 as INDIAN_NEWS, type IP6Multicast, type IP6Unicast, IPv4, IPv6$1 as IPv6, ISO3166_1$2 as ISO3166_1, ITALIAN_NEWS$2 as ITALIAN_NEWS, type IdentityFn, type IdentityFunction, type If, type IfAllExtend, type IfAllLiteral, type IfEqual, type IfEquals, type IfErrorCondition, type IfLeft, type IfLength, type IfLiteralKind, type IfNever, type IfUnset, type IfUnsetOrUndefined, type Iff, type IkeaUrl, type ImgFormat, type ImgFormatWeb, type Immutable, type Increment, type Indent$1 as Indent, type Indent2, type Indent4, type IndentSpaces, type IndentTab, type IndexOf, type Indexable, type IndexableObject, type IndianNewsCompanies, type IndianNewsUrls, type InlineSvg, type Integer, type IntegerBrand, type InternationalPhoneNumber, type Intersect$1 as Intersect, type IntersectAll, type IntersectWithAll, type IntersectingKeys, type Intersection, type InvertNumericSign, type Ip4Address, type Ip4Netmask, type Ip4Netmask16, type Ip4Netmask24, type Ip4Netmask32, type Ip4Netmask8, type Ip4NetmaskSuggestion, type Ip4Octet, type Ip6Address, type Ip6AddressFull, type Ip6AddressLoose, type Ip6Group, type Ip6GroupExpansion, type Ip6Loopback, type Ip6Subnet, type Ip6SubnetPrefix, type IsAllCaps, type IsAllLowercase, type IsAmericanExpress, type IsArray, type IsAtomicTag, type IsBoolean, type IsBooleanLiteral, type IsCapitalized, type IsComputedRef, type IsContainer, type IsCreditCard, type IsCssHexadecimal, type IsCsv, type IsDefined, type IsDictionaryDefinition, type IsDomainName, type IsDotPath, type IsEmptyContainer, type IsEmptyObject, type IsEmptyString, type IsEqual, type IsErr, type IsErrMsg, type IsErrorCondition, type IsEscapeFunction, type IsFalse, type IsFalsy, type IsFloat, type IsFnWithParams, type IsFunction, type IsGreaterThan, type IsGreaterThanOrEqual, type IsHexadecimal, type IsHtmlClosingTag, type IsInteger, type IsIp4Address, type IsIp4Octet, type IsIp6Address, type IsIp6HexGroup, type IsIpAddress, type IsIso8601DateTime, type IsIsoDate, type IsIsoExplicitDate, type IsIsoImplicitDate, type IsIsoTime, type IsJsDate, type IsLength, type IsLessThan, type IsLessThanOrEqual, type IsLiteral, type IsLiteralFn, type IsLiteralKind, type IsLiteralUnion, type IsLowerAlpha, type IsLuxonDateTime, type IsMoment, type IsNarrowingFn, type IsNegativeNumber, type IsNever, type IsNonEmptyContainer, type IsNonEmptyObject, type IsNonLiteralUnion, type IsNotEqual, type IsNothing, type IsNull, type IsNumber, type IsNumberLike, type IsNumericLiteral, type IsObject, type IsObjectLiteral, type IsOk, type IsOptional, type IsOptionalLiteral, type IsOptionalScalar, type IsPhoneNumber, type IsPositiveNumber, type IsReadonlyArray, type IsReadonlyObject, type IsRequired, type IsResult, type IsScalar, type IsSingleChar, type IsSingleSided, type IsSingularNoun, type IsStrictPromise, type IsString, type IsStringLiteral, type IsSymbol, type IsThenable, type IsTrue, type IsTruthy, type IsTuple, type IsUndefined, type IsUnion, type IsUnionArray, type IsUnset, type IsUrl, type IsValidDotPath, type IsValidIndex, type IsVariable, type IsVisaMastercard, type IsVueRef, type IsWideContainer, type IsWideNumber, type IsWideScalar, type IsWideString, type IsWideType, type IsWideUnion, type Iso3166Alpha2Lookup, type Iso3166Alpha3Lookup, type Iso3166CodeLookup, type Iso3166CountryLookup, type Iso3166_1_Alpha2, type Iso3166_1_Alpha3, type Iso3166_1_CountryCode, type Iso3166_1_CountryName, type Iso3166_1_Lookup, type Iso3166_1_Token, type Iso8601, type Iso8601Date, type Iso8601DateTime, type Iso8601Time, type Iso8601Year, type ItalianNewsCompanies, type ItalianNewsUrls, JAPANESE_NEWS$2 as JAPANESE_NEWS, type JapaneseNewsCompanies, type JapaneseNewsUrls, type Jcb, type Join, type Joiner, type JsonValue, type JsonValues, type JustFunction, KROGER_DNS$2 as KROGER_DNS, type KebabCase, type KebabKeys, type KeyOf, type KeyValue, type KeyframeApi, type Keys, type KeysEqualValue, type KeysNotEqualValue, type KeysOverlap, type KeysUnion, type KeysWithValue, type KeysWithoutValue, type KindFrom, type KlassMeta, type KrogerUrl, type KvFn, type KvFnDefn, type KvTuple, LITERAL_TYPE_KINDS$1 as LITERAL_TYPE_KINDS, LOWER_ALPHA_CHARS$2 as LOWER_ALPHA_CHARS, LOWES_DNS$2 as LOWES_DNS, LUMINOSITY_METRICS_LOOKUP$2 as LUMINOSITY_METRICS_LOOKUP, type Last, type LastChar, type LastInUnion$1 as LastInUnion, type LastOfEach, type LeadingNonAlpha, type Left, type LeftContains, type LeftDoubleMark, type LeftEquals, type LeftExtends, type LeftHeavyDoubleTurned, type LeftHeavySingleTurned, type LeftIncludes, type LeftLowDoublePrime, type LeftReversedDoublePrime, type LeftRight, type LeftRight__Operations, type LeftSingleMark, type LeftWhitespace, type Length, type LessThan, type LessThanOrEqual$1 as LessThanOrEqual, type LifoQueue, type LikeRegExp, type List, type LiteralFn, type LocalPhoneNumber, type LoggingOptions, type LogicFunction, type LogicalCombinator, type LogicalReturns, type LowerAllCaps, type LowerAlphaChar, type LowesUrl, type Luminosity, type LuminosityMetrics, type LuminosityUom, type LuxonJs, MACYS_DNS$2 as MACYS_DNS, MARKED$2 as MARKED, MASS_METRICS_LOOKUP$2 as MASS_METRICS_LOOKUP, MEXICAN_NEWS$2 as MEXICAN_NEWS, MIME_TYPES, MONTH_ABBR$1 as MONTH_ABBR, MONTH_NAME$1 as MONTH_NAME, type MacysUrl, type Maestro, type MakeKeysOptional, type MakeKeysRequired, type MakePropsMutable, type ManyToMany, type ManyToOne, type ManyToZero, type MapCard, MapCardinality, type MapCardinalityFrom, type MapCardinalityIllustrated, type MapConfig, type MapCoverage, type MapError, type MapFn, type MapFnInput, type MapFnOutput, type MapIR, type MapInput, type MapInputFrom, type MapKeyDefn, type MapOR, type MapOutput, type MapOutputFrom, type MapOverArray, type MapOverObject, type MapOverObjectToArray, type MapTo, type MapValueDefn, type Mapper, type MapperApi, type MapperOld, type Marked$5 as Marked, type Mass, type MassMetrics, type MassUom, type Mastercard, type MaxLength, type MaybeError, type MaybeRef, type Merge, type MergeKVs, type MergeObjects, type MergeScalars, type MergeTuples, type Metric, type MetricCategory, type MetricTypeGuard, type MexicanNewsCompanies, type MexicanNewsUrls, type MilitaryHours, type MilitaryTime, type MilitaryTimeOptions, type Milliseconds, type Minutes, type MomentJs, type MonthAbbr, type MonthAbbrThenDate, type MonthAbbrThenDateAndYear, type MonthDay, type MonthName, type MonthNumeric, type MonthPostfix, type MonthThenDate, type MonthThenDateThenYear, type MonthThenDate_Simple, type MultiChoiceCallback, type MultipleChoice, type Mutable, type MutableProps, type MutablePropsExclusive, NARROW_CONTAINER_TYPE_KINDS$1 as NARROW_CONTAINER_TYPE_KINDS, NETWORK_PROTOCOL, NETWORK_PROTOCOL_INSECURE, NETWORK_PROTOCOL_LOOKUP$2 as NETWORK_PROTOCOL_LOOKUP, NETWORK_PROTOCOL_SECURE, NIKE_DNS$2 as NIKE_DNS, NON_ZERO_NUMERIC_CHAR$2 as NON_ZERO_NUMERIC_CHAR, NORWEGIAN_NEWS$2 as NORWEGIAN_NEWS, NOT_APPLICABLE$1 as NOT_APPLICABLE, NOT_DEFINED$1 as NOT_DEFINED, NO_DEFAULT_VALUE$2 as NO_DEFAULT_VALUE, NUMERIC_CHAR$2 as NUMERIC_CHAR, NUMERIC_DIGIT$1 as NUMERIC_DIGIT, type NamedColor, type NamedColorMinimal, type NamedColor_Blue, type NamedColor_Brown, type NamedColor_Cyan, type NamedColor_Gray, type NamedColor_Green, type NamedColor_Orange, type NamedColor_Pink, type NamedColor_Purple, type NamedColor_Red, type NamedColor_White, type NamedColor_Yellow, type NamedDynamicSegment, type NamingConvention, type Narrow$1 as Narrow, type NarrowDictProps, type NarrowObject, type Narrowable, type NarrowableDefined, type NarrowableScalar, type NarrowingFn, type NarrowlyContains, type NegDelta, type Negative, type NetworkConfig, type NetworkDefinition, type NetworkProtocol, type NetworkProtocolPrefix, Never, type NewsUrls, type NextDigit, type NikeUrl, type NoDefaultValue$2 as NoDefaultValue, type NonAlphaChar, type NonArray, type NonNumericKeys, type NonStringKeys, type NonZeroNumericChar, type NorwegianNewsCompanies, type NorwegianNewsUrls, type Not, type NotApplicable$1 as NotApplicable, type NotDefined$1 as NotDefined, type NotEqual, type NotLength, type NotNull, type Nothing, type NpmVersion, type NumberLike, type NumericChar, type NumericCharOneToFive, type NumericCharOneToFour, type NumericCharOneToThree, type NumericCharOneToTwo, type NumericCharZeroToFive, type NumericCharZeroToFour, type NumericCharZeroToOne, type NumericCharZeroToThree, type NumericCharZeroToTwo, type NumericComparatorOperation, type NumericKeys, type NumericRange, type NumericSign, type NumericSort, type NumericSupportOptions, OPTION, type ObjKeyDefn, type ObjectApiCallback, type ObjectKey, type ObjectMap, type ObjectMapConversion, type ObjectMapper, type ObjectMapperCallback, type ObjectToApi, type ObjectToCssString, type ObjectToJsString, type ObjectToJsonString, type ObjectToKeyframeString, type ObjectToTuple, type Ok, type OkFrom, type OldSchoolHtmlElement, type OnPass, type OnPassRemap, type OneToMany, type OneToOne, type OneToZero, type OpeningBracket, type OpeningMark, type OpeningMarkPlus, type Opt$1 as Opt, type OptCr, type OptCrThenIndent, type OptDictProps, type OptModifier, type OptPercent, type OptRequired, type OptSpace, type OptSpace2, type OptSpace4, type OptUrlQueryParameters, type OptWhitespace, type Optional, type OptionalKeys, type OptionalKeysTuple, type OptionalParamFn, type OptionalProps, type OptionalSimpleScalarTokens, type OptionalSpace, type Or, PHONE_COUNTRY_CODES$2 as PHONE_COUNTRY_CODES, PHONE_FORMAT$1 as PHONE_FORMAT, PLURAL_EXCEPTIONS$2 as PLURAL_EXCEPTIONS, PLURAL_EXCEPTIONS_OLD, POWER_METRICS_LOOKUP$2 as POWER_METRICS_LOOKUP, PRESSURE_METRICS_LOOKUP$2 as PRESSURE_METRICS_LOOKUP, PROTOCOL_DEFAULT_PORTS$2 as PROTOCOL_DEFAULT_PORTS, PROXMOX_CT_STATE, type PackageJson, type ParameterlessFn, type ParamsForComparison, type ParseInt, type PartialError, type PartialErrorDefn, type PascalCase, type PascalKeys, type Passthrough, type PathJoin, type PhoneAreaCode, type PhoneCountryCode, type PhoneCountryLookup, type PhoneFormat, type PhoneNumber, type PhoneNumberDelimiter, type PhoneNumberType, type PhoneNumberWithCountryCode, type PhoneShortCode, type PluralExceptions, type Pluralize, type PlusMinus, type Pop, type PortMapping, type PortSpecifierOptions, type Power, type PowerMetrics, type PowerUom, type Prepend, type PrependAll, type Pressure, type PressureMetrics, type PressureUom, type PriorDigit, type PrivateKey, type PrivateKeyOf, type PrivateKeys, type PromiseAll, type PropertyChar, type ProtocolOptions, type ProxyError, type PublicKeyOf, type PublicKeys, type Punctuation, type Push, type QuotationMark, type QuotationMarkPlus, REPO_PAGE_TYPES$1 as REPO_PAGE_TYPES, REPO_SOURCES$2 as REPO_SOURCES, REPO_SOURCE_LOOKUP$3 as REPO_SOURCE_LOOKUP, RESISTANCE_METRICS_LOOKUP$2 as RESISTANCE_METRICS_LOOKUP, RESULT$1 as RESULT, type RawPhoneNumber, type ReadonlyKeys, type ReadonlyProps, type RealizedErr, type RecKeyVariant, type RecVariant, type RecordKeyDefn, type RecordKeyWideTokens, type RecordValueTypeDefn, type ReduceValues, type RegularFn$1 as RegularFn, type Relate, type RelativeUrl, type RemoveEmpty, type RemoveFnProps, type RemoveFromEnd, type RemoveFromStart, type RemoveHttpProtocol, type RemoveIndex, type RemoveIndexKeys, type RemoveMarked, type RemoveNetworkProtocol, type RemoveNever, type RemovePhoneCountryCode, type RemoveStart, type RemoveUndefined, type RemoveUrlPort, type RemoveUrlSource, type Repeat, type Replace, type ReplaceAll, type ReplaceLast, type RepoPageType, type RepoSource, type RepoUrls, type RequireProps, type RequiredKeys, type RequiredKeysTuple, type RequiredProps, type RequiredSimpleScalarTokens, type Resistance, type ResistanceMetrics, type ResistanceUom, type RestEndpoint, type RestMethod, type Result, type ResultApi, type ResultErr, type ResultTuple, type RetailUrl, type Retain, type RetainAfter, type RetainAfterLast, type RetainByProp, type RetainChars, type RetainLiterals, type RetainProps, type RetainUntil, type RetainWhile, type RetainWideTypes, type ReturnTypes, type ReturnValues, type Returns, type ReturnsFalse, type ReturnsTrue, type Reverse, type RgbColor, type RgbaColor, type Right, type RightContains, type RightDoubleMark, type RightEquals, type RightExtends, type RightHeavyDoubleTurned, type RightHeavySingleTurned, type RightIncludes, type RightReversedDoublePrime, type RightSingleMark, type RightWhitespace, type Rtn, type RuntimeUnion, SHAPE_DELIMITER, SHAPE_PREFIXES, SIMPLE_ARRAY_TOKENS$2 as SIMPLE_ARRAY_TOKENS, SIMPLE_CONTAINER_TOKENS, SIMPLE_DICT_TOKENS$2 as SIMPLE_DICT_TOKENS, SIMPLE_DICT_VALUES$2 as SIMPLE_DICT_VALUES, SIMPLE_FN_TOKENS, SIMPLE_MAP_KEYS$2 as SIMPLE_MAP_KEYS, SIMPLE_MAP_TOKENS$2 as SIMPLE_MAP_TOKENS, SIMPLE_MAP_VALUES$2 as SIMPLE_MAP_VALUES, SIMPLE_OPT_SCALAR_TOKENS$2 as SIMPLE_OPT_SCALAR_TOKENS, SIMPLE_SCALAR_TOKENS$2 as SIMPLE_SCALAR_TOKENS, SIMPLE_SET_TOKENS$2 as SIMPLE_SET_TOKENS, SIMPLE_SET_TYPES$2 as SIMPLE_SET_TYPES, SIMPLE_TOKENS, SIMPLE_UNION_TOKENS$2 as SIMPLE_UNION_TOKENS, SINGULAR_NOUN_ENDINGS$1 as SINGULAR_NOUN_ENDINGS, type SKeys, SOCIAL_MEDIA$2 as SOCIAL_MEDIA, SOUTH_KOREAN_NEWS$2 as SOUTH_KOREAN_NEWS, SPANISH_NEWS$2 as SPANISH_NEWS, SPEED_METRICS_LOOKUP$2 as SPEED_METRICS_LOOKUP, SWISS_NEWS$2 as SWISS_NEWS, type Scalar, type ScalarCallback, type ScalarNotSymbol, type Second, type SecondOfEach, type Seconds, type SecretDefinition, type SemanticVersion, type SerializedComma, type SetCandidate, type SetKey, type SetKeyForce, type SetKeyStrict, type SetKeysTo, type Shape, type ShapeApi, ShapeApiImplementation, type ShapeApi__Scalars, type ShapeCallback, type ShapeSuggest, type ShapeTupleOrUnion, type SharedKeys, type Shift, type ShortDate, type SimpleArrayToken, type SimpleContainerToken, type SimpleDictToken, type SimpleMapToken, type SimpleScalarToken, type SimpleSetToken, type SimpleToken, type SimpleType, type SimpleTypeArray, type SimpleTypeDict, type SimpleTypeMap, type SimpleTypeScalar, type SimpleTypeSet, type SimpleTypeUnion, type SimpleUnionToken, type SimplifyObject, type SingleQuote, type SingletonClosure, type SingularNoun$1 as SingularNoun, type SingularNounEnding, type SizingUnits, type Slice, type SmartMark, type SmartMarkPlus, type SnakeCase, type SnakeKeys, type SocialMediaPlatform, type SocialMediaProfileUrl, type SocialMediaUrl, type Solo, type Some, type SomeEqual, type SomeExtend, type Something, type SouthKoreanNewsCompanies, type SouthKoreanNewsUrls, type SpanishNewsCompanies, type SpanishNewsUrls, type SpecialChar, type Speed, type SpeedMetrics, type SpeedUom, type Split, type SplitAlt, type StackFrame, type StackTrace, type StandardMark, type StartingWithTypeGuard, type StartsWith, type StrLen, type StringComparatorOperation, type StringDelimiter, type StringLength, type StringLiteralFromTuple, type StringLiteralTemplate, type StringLiteralToken, type StringLiteralVar, type StringTokenUtilities, type StripAfter, type StripBefore, type StripChars, type StripLeading, type StripLeftNonAlpha, type StripSlash, type StripSurround, type StripSurroundConfigured, type StripTrailing, type StripUntil, type StripWhile, type StrongMap, type StrongMapTransformer, type StrongMapTypes, type StructuredStringType, type Subtract, type Suggest, type SuggestHexadecimal, type SuggestIpAddress, type SuggestNumeric, type Surround, type SurroundWith, type SwissNewsCompanies, type SwissNewsUrls, type SymbolKind, type SyncFunction, TARGET_DNS$2 as TARGET_DNS, TEMPERATURE_METRICS_LOOKUP$2 as TEMPERATURE_METRICS_LOOKUP, TIME_METRICS_LOOKUP$2 as TIME_METRICS_LOOKUP, type TLD, TOP_LEVEL_DOMAINS$1 as TOP_LEVEL_DOMAINS, TT_ATOMICS$2 as TT_ATOMICS, type TT_Atomic, TT_CONTAINERS$2 as TT_CONTAINERS, type TT_Container, TT_DELIMITER$2 as TT_DELIMITER, TT_FUNCTIONS$2 as TT_FUNCTIONS, type TT_Function, TT_KIND_VARIANTS, TT_SETS$2 as TT_SETS, TT_SINGLETONS$2 as TT_SINGLETONS, TT_START$2 as TT_START, TT_STOP$2 as TT_STOP, type TT_Set, type TT_Singleton, TURKISH_NEWS$2 as TURKISH_NEWS, TW_CHROMA$2 as TW_CHROMA, TW_CHROMA_100, TW_CHROMA_200, TW_CHROMA_300, TW_CHROMA_400, TW_CHROMA_50, TW_CHROMA_500, TW_CHROMA_600, TW_CHROMA_700, TW_CHROMA_800, TW_CHROMA_900, TW_CHROMA_950, TW_COLOR_TARGETS$2 as TW_COLOR_TARGETS, TW_HUE$2 as TW_HUE, TW_HUE_NEUTRAL$2 as TW_HUE_NEUTRAL, TW_HUE_STATIC, TW_HUE_VIBRANT$2 as TW_HUE_VIBRANT, TW_LUMINOSITY$2 as TW_LUMINOSITY, TW_LUMIN_100, TW_LUMIN_200, TW_LUMIN_300, TW_LUMIN_400, TW_LUMIN_50, TW_LUMIN_500, TW_LUMIN_600, TW_LUMIN_700, TW_LUMIN_800, TW_LUMIN_900, TW_LUMIN_950, TW_MODIFIERS, TW_MODIFIERS_CORE$2 as TW_MODIFIERS_CORE, TW_MODIFIERS_ORDER$2 as TW_MODIFIERS_ORDER, TW_MODIFIERS_RELN$2 as TW_MODIFIERS_RELN, TW_MODIFIERS_SIZING$2 as TW_MODIFIERS_SIZING, TYPE_COMPARISONS, TYPE_KINDS, TYPE_OF$2 as TYPE_OF, TYPE_TOKEN_REC_KEY_VARIANTS$2 as TYPE_TOKEN_REC_KEY_VARIANTS, TYPE_TOKEN_REC_VARIANTS$2 as TYPE_TOKEN_REC_VARIANTS, TYPE_TOKEN_STRING_SET_VARIANTS$2 as TYPE_TOKEN_STRING_SET_VARIANTS, TYPE_TOKEN_UNION_SET_VARIANTS$2 as TYPE_TOKEN_UNION_SET_VARIANTS, TYPE_TRANSFORMS, type TZ, type TakeFirst, type TakeLast, type TakeProp, type TargetUrl, type Temperature, type TemperatureMetrics, type TemperatureUom, type Thenable, type Throw, type Time, type TimeInMilliseconds, type TimeInMinutes, type TimeInSeconds, type TimeLike, type TimeMetric, type TimeMetrics, type TimeNomenclature, type TimeResolution, type TimeUom, type Timezone, type ToBoolean, type ToCSV, type ToChoices, type ToContainer, type ToFn, type ToInteger, type ToIntegerOp, type ToJsonValue, type ToKeyValueSort, type ToKeyValueTuple, type ToKv, type ToNumber, type ToNumericArray, type ToPhoneFormat, type ToString, type ToStringArray, type ToStringLiteral, type ToUnion, type TokenContainerClosure, type TokenFunctionClosure, type TokenSetClosure, type TokenizeStringLiteral, type Trim, type TrimLeft, type TrimRight, type Truncate$1 as Truncate, type TruncateAtLen, type TruthyReturns, type Tuple, type TupleDefn, type TupleRange, type TupleToUnion, type TurkishNewsCompanies, type TurkishNewsUrls, type TwChroma, type TwChroma100, type TwChroma200, type TwChroma300, type TwChroma400, type TwChroma50, type TwChroma500, type TwChroma600, type TwChroma700, type TwChroma800, type TwChroma900, type TwChroma950, type TwChromaLookup, type TwColor, type TwColorOptionalOpacity, type TwColorTarget, type TwColorWithLuminosity, type TwColorWithLuminosityOpacity, type TwHue, type TwLumi100, type TwLumi200, type TwLumi300, type TwLumi400, type TwLumi50, type TwLumi500, type TwLumi600, type TwLumi700, type TwLumi800, type TwLumi900, type TwLumi950, type TwLuminosity, type TwLuminosityLookup, type TwModifier, type TwModifier__Core, type TwModifier__Order, type TwModifier__Reln, type TwModifier__Size, type TwModifiers, type TwNeutralColor, type TwSizeResponsive, type TwStaticColor, type TwTarget__Color, type TwTarget__ColorLuminosity, type TwTarget__ColorLuminosityWithOpacity, type TwTarget__ColorName, type TwTarget__ColorWithOptPrefixes, type TwTarget__Color__Light, type TwVibrantColor, type Type, type TypeDefaultValue, type TypeDefinition, type TypeDefn, type TypeDefnValidations, type TypeErrorInfo, type TypeGuard, type TypeHasDefaultValue, type TypeHasUnderlying, type TypeHasValidations, type TypeIsRequired, type TypeKind, type TypeKindContainer, type TypeKindContainerNarrow, type TypeKindContainerWide, type TypeKindFalsy, type TypeKindLiteral, type TypeKindWide, type TypeOf, type TypeOfExtended, type TypeOfTypeGuard, type TypeOptions, type TypeRequired, type TypeStrength, type TypeSubtype, type TypeToken, type TypeTokenAtomics, type TypeTokenContainers, type TypeTokenDelimiter, type TypeTokenFunctions, type TypeTokenKind, type TypeTokenLookup, type TypeTokenSets, type TypeTokenSingletons, type TypeTokenStart, type TypeTokenStop, type TypeToken__Boolean, type TypeToken__False, type TypeToken__Fn, type TypeToken__FnSet, type TypeToken__Gen, type TypeToken__Never, type TypeToken__Null, type TypeToken__Number, type TypeToken__NumberSet, type TypeToken__Rec, type TypeToken__String, type TypeToken__StringSet, type TypeToken__True, type TypeToken__Undefined, type TypeToken__UnionSet, type TypeToken__Unknown, type TypeTuple, type TypeUnderlying, type TypedFunction, type TzHourOffset, UK_NEWS$2 as UK_NEWS, UPPER_ALPHA_CHARS$2 as UPPER_ALPHA_CHARS, US_NEWS$2 as US_NEWS, US_STATE_LOOKUP$2 as US_STATE_LOOKUP, US_STATE_LOOKUP_PROVINCES$2 as US_STATE_LOOKUP_PROVINCES, US_STATE_LOOKUP_STRICT, type UUID, type UUID_Urn, type UkNewsCompanies, type UkNewsUrls, type Unbox, type UndefinedArrayIsUnknown, type UnderlyingType, type UnionArrayToTuple, type UnionClosure, type UnionElDefn, type UnionFilter, type UnionFromProp, type UnionHasArray, type UnionMutate, type UnionMutationOp, type UnionShift, type UnionToIntersection, type UnionToTuple$1 as UnionToTuple, type UnionWithAll, type Unique, type UniqueKeys, type UniqueKeysUnion, type UniqueKv, type UnitType, type Unset, type Uom, type UomTypeGuard, type UpperAlphaChar, type UpsertKeyValue, type Uri, type UrlBuilder, type UrlMeta, type UrlOptions, type UrlPath, type UrlPathChars, type UrlPort, type UrlQueryParameters, type UrlsFrom, type UsNewsCompanies, type UsNewsUrls, type UsPhoneNumber, type UsStateAbbrev, type UsStateName, VOLTAGE_METRICS_LOOKUP$2 as VOLTAGE_METRICS_LOOKUP, VOLUME_METRICS_LOOKUP$2 as VOLUME_METRICS_LOOKUP, type ValidKey, type Validate, type ValidationFunction, type ValueAtDotPath, type ValueCallback, type ValueOrReturnValue, type Values, type Variable, type VariableChar, type Visa, type VisaMastercard, type Voltage, type VoltageMetrics, type VoltageUom, type Volume, type VolumeDefinition, type VolumeMapping, type VolumeMetrics, type VolumeUom, type VueComputedRef, type VueRef, WALGREENS_DNS$2 as WALGREENS_DNS, WALMART_DNS$2 as WALMART_DNS, WAYFAIR_DNS$2 as WAYFAIR_DNS, WHITESPACE_CHARS$2 as WHITESPACE_CHARS, WHOLE_FOODS_DNS$2 as WHOLE_FOODS_DNS, WIDE_CONTAINER_TYPE_KINDS$1 as WIDE_CONTAINER_TYPE_KINDS, WIDE_TYPE_KINDS$1 as WIDE_TYPE_KINDS, type WalgreensUrl, type WalmartUrl, type WayFairUrl, type WeakMapKeyDefn, type WeakMapValueDefn, type WhenNever, type WhereLeft, type Whitespace, type WholeFoodsUrl, WideAssignment, type WideContainerNames, type WideTokenNames, type WideTypeName, type Widen, type WidenContainer, type WidenLiteral, type WidenScalar, type WidenTuple, type WidenUnion, type WidenValues, type WithDefault, type WithKeys, type WithNumericKeys, type WithStringKeys, type WithValue, type WithoutKeys, type WithoutValue, type WrapperFn, type YMD, type Year, type YouTubeCreatorUrl, type YouTubeEmbedUrl, type YouTubeFeedType, type YouTubeFeedUrl, type YouTubeHistoryUrl, type YouTubeHome, type YouTubeLikedPlaylistUrl, type YouTubeMeta, type YouTubePageType, type YouTubePlaylistUrl, type YouTubeShareUrl, type YouTubeSubscriptionsUrl, type YouTubeUrl, type YouTubeUsersPlaylistUrl, type YouTubeVideoUrl, type YouTubeVideosInPlaylist, ZARA_DNS$2 as ZARA_DNS, ZIP_TO_STATE$1 as ZIP_TO_STATE, type ZaraUrl, type Zero, type ZeroToMany, type ZeroToOne, type ZeroToZero, type Zip5, type ZipCode, type ZipPlus4, type ZipToState, addFnToProps, addPropsToFn, and, asApi, asArray, asChars, asDate, asEscapeFunction, asIsoDate, asOptionalParamFunction, asPhoneFormat, asRecord, asString, asStringLiteral, asType, asTypeToken, asVueRef, box, boxDictionaryValues, capitalize, cardType, choices, createConstant, createConverter, createCssKeyframe, createCssSelector, createErrorCondition, createFifoQueue, createFixedLengthArray, createFnWithProps, createFnWithPropsExplicit, createLifoQueue, createMapper, createObjectMap, createTypeToken, cssColor, cssFromDefinition, csv, defineCss, defineObj, defineObject, defineObjectApi, defineTuple, doesExtend, endsWith, ensureLeading, ensureSurround, ensureTrailing, entries, errCondition, filter, filterEmpty, filterUndefined, find, fnMeta, fromDefineObject, fromKeyValue, get, getDaysBetween, getEach, getPhoneCountryCode, getTailwindModifiers, getToday, getTokenKind, getTomorrow, getTypeSubtype, getUrlBase, getUrlDefaultPort, getUrlDynamics, getUrlPath, getUrlPort, getUrlProtocol, getUrlQueryParams, getUrlSource, getWeekNumber, getYesterday, getYouTubePageType, handleDoneFn, hasCountryCode, hasDefaultValue, hasHtml, hasIndexOf, hasKeys, hasOverlappingKeys, hasProtocol, hasProtocolPrefix, hasUrlPort, hasUrlQueryParameter, hasValidHtml, hasWhiteSpace, idLiteral, idTypeGuard, identity, ifArray, ifArrayPartial, ifBoolean, ifChar, ifContainer, ifDefined, ifEqual, ifFalse, ifFunction, ifHasKey, ifLength, ifLowercaseChar, ifNotNull, ifNull, ifNumber, ifObject, ifSameType, ifScalar, ifString, ifTrue, ifUndefined, ifUppercaseChar, indexOf, infer, intersect, intersection, ip6GroupExpansion, ip6Prefix, isAccelerationMetric, isAccelerationUom, isAlpha, isAmazonUrl, isAmericanExpress, isApi, isApiSurface, isAppleUrl, isAreaMetric, isAreaUom, isArray, isArrayToken, isAtomicKind, isAtomicToken, isAustralianNewsUrl, isBelgiumNewsUrl, isBestBuyUrl, isBitbucketUrl, isBoolean, isBooleanLike, isBox, isCanadianNewsUrl, isChineseNewsUrl, isCodeCommitUrl, isConstant, isContainer, isContainerToken, isCostCoUrl, isCountryAbbrev, isCountryCode2, isCountryCode3, isCountryName, isCreditCard, isCssAspectRatio, isCsv, isCurrentMetric, isCurrentUom, isCvsUrl, isDanishNewsUrl, isDate, isDefineObject, isDefined, isDellUrl, isDistanceMetric, isDistanceUom, isDomainName, isDoneFn, isDutchNewsUrl, isEbayUrl, isEmail, isEmpty, isEnergyMetric, isEnergyUom, isEqual, isErrorCondition, isEscapeFunction, isEtsyUrl, isFalse, isFalsy, isFnBasedKind, isFnBasedToken, isFnWithParams, isFrenchNewsUrl, isFrequencyMetric, isFrequencyUom, isFunction, isGermanNewsUrl, isGithubIssueUrl, isGithubIssuesListUrl, isGithubOrgUrl, isGithubProjectUrl, isGithubProjectsListUrl, isGithubReleaseTagUrl, isGithubReleasesListUrl, isGithubRepoReleaseTagUrl, isGithubRepoReleasesUrl, isGithubRepoUrl, isGithubUrl, isHexadecimal, isHmUrl, isHomeDepotUrl, isHtml, isHtmlComponentTag, isHtmlElement, isIkeaUrl, isIndexable, isIndianNewsUrl, isInlineSvg, isIp4Address, isIp6Address, isIpAddress, isIso3166Alpha2, isIso3166Alpha3, isIso3166CountryCode, isIso3166CountryName, isIsoDate, isIsoDateTime, isIsoExplicitDate, isIsoExplicitTime, isIsoImplicitDate, isIsoImplicitTime, isIsoTime, isIsoYear, isItalianNewsUrl, isJapaneseNewsUrl, isKrogersUrl, isLeapYear, isLength, isLikeRegExp, isLowesUrl, isLuminosityMetric, isLuminosityUom, isLuxonDateTime, isMacysUrl, isMap, isMapToken, isMassMetric, isMassUom, isMastercard, isMetric, isMetricCategory, isMexicanNewsUrl, isMoment, isNarrowableObject, isNever, isNewsUrl, isNikeUrl, isNorwegianNewsUrl, isNotEmpty, isNotNull, isNothing, isNull, isNumber, isNumberLike, isNumericArray, isNumericString, isObject, isObjectKey, isObjectToken, isOptionalParamFunction, isPhoneNumber, isPowerMetric, isPowerUom, isPressureMetric, isPressureUom, isProtocol, isProtocolPrefix, isReadonlyArray, isRecordToken, isRef, isRegExp, isRepoSource, isRepoUrl, isResistanceMetric, isResistanceUom, isRetailUrl, isSameTypeOf, isScalar, isSemanticVersion, isSet, isSetBasedKind, isSetBasedToken, isSetContainer, isSetToken, isShape, isShapeCallback, isSimpleContainerToken, isSimpleContainerTokenTuple, isSimpleScalarToken, isSimpleScalarTokenTuple, isSimpleToken, isSimpleTokenTuple, isSingletonKind, isSingletonToken, isSocialMediaProfileUrl, isSocialMediaUrl, isSouthKoreanNewsUrl, isSpanishNewsUrl, isSpecificConstant, isSpeedMetric, isSpeedUom, isString, isStringArray, isSwissNewsUrl, isSymbol, isTailwindColor, isTailwindColorClass, isTailwindColorName, isTailwindColorTarget, isTailwindColorWithLuminosity, isTailwindColorWithLuminosityAndOpacity, isTailwindModifier, isTargetUrl, isTemperatureMetric, isTemperatureUom, isThenable, isThisMonth, isThisWeek, isThisYear, isTimeMetric, isTimeUom, isToday, isTomorrow, isTrimable, isTrue, isTruthy, isTuple, isTupleToken, isTurkishNewsUrl, isTypeOf, isTypeSubtype, isTypeToken, isTypeTokenKind, isTypeTuple, isUkNewsUrl, isUndefined, isUnset, isUom, isUomCategory, isUri, isUrl, isUrlPath, isUrlSource, isUsNewsUrl, isUsPhoneNumber, isUsStateAbbreviation, isUsStateName, isValidAtomicTag, isValidBlockTag, isValidHtml, isValidHtmlTag, isVariable, isVisa, isVisaMastercard, isVoltageMetric, isVoltageUom, isVolumeMetric, isVolumeUom, isVueRef, isWalgreensUrl, isWalmartUrl, isWayfairUrl, isWholeFoodsUrl, isYesterday, isYouTubeCreatorUrl, isYouTubeFeedHistoryUrl, isYouTubeFeedUrl, isYouTubePlaylistUrl, isYouTubePlaylistsUrl, isYouTubeShareUrl, isYouTubeSubscriptionsUrl, isYouTubeTrendingUrl, isYouTubeUrl, isYouTubeVideoUrl, isYouTubeVideosInPlaylist, isZaraUrl, isZipCode, isZipCode5, isZipPlus4, joinWith, jsonValue, jsonValues, keysOf, kindLiteral, last, list, literal, logicalReturns, lookupCountryAlpha2, lookupCountryAlpha3, lookupCountryCode, lookupCountryName, lowercase, mapOver, maybePhoneNumber, mergeObjects, mergeScalars, mergeTuples, nameLiteral, narrow, narrowObjectTo, narrowObjectToType, never, objectToApi, objectValues, omit, optional, optionalOrNull, or, orNull, pathJoin, pluralize, removePhoneCountryCode, removeTailwindModifiers, removeUrlProtocol, result, retain, retainAfter, retainAfterInclusive, retainChars, retainUntil, retainUntilInclusive, retainWhile, reverse, rightWhitespace, shape, sharedKeys, shift, simpleContainerToken, simpleContainerTokenToTypeToken, simpleContainerType, simpleScalarToken, simpleScalarTokenToTypeToken, simpleScalarType, simpleToken, simpleType, simpleUnionTokenToTypeToken, slice, split, startsWith, stripAfter, stripBefore, stripChars, stripLeading, stripParenthesis, stripSurround, stripTrailing, stripUntil, stripWhile, surround, takeNumericCharacters, takeProp, toCamelCase, toKebabCase, toKeyValue, toNumber, toNumericArray, toPascalCase, toSnakeCase, toString, toUppercase, trim, trimEnd, trimLeft, trimRight, trimStart, truncate, tuple, twColor, unbox, uncapitalize, union, unionize, unique, uniqueKeys, unset, uppercase, urlMeta, validHtmlAttributes, valuesOf, widen, withDefaults, withKeys, withValue, withoutKeys, withoutValue, wrapFn, youtubeEmbed, youtubeMeta };
|