inferred-types 0.55.20 → 0.55.21

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.
@@ -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$1z$1<TVal, TDefault> = TVal extends Something$1 ? TVal : TDefault;
7880
+ type Process$1A$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$1z$1<TVal, TDefault>;
7887
+ type Default$1<TVal, TDefault> = Process$1A$1<TVal, TDefault>;
7888
7888
 
7889
- type Process$1y$1<TConditions extends readonly boolean[], TBooleanSeen extends boolean> = [] extends TConditions ? IfEqual$1<TBooleanSeen, true, boolean, true> : [First$1<TConditions>] extends [false] ? false : Process$1y$1<AfterFirst$1<TConditions>, TBooleanSeen>;
7889
+ type Process$1z$1<TConditions extends readonly boolean[], TBooleanSeen extends boolean> = [] extends TConditions ? IfEqual$1<TBooleanSeen, true, boolean, true> : [First$1<TConditions>] extends [false] ? false : Process$1z$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$1y$1<LogicalReturns$1<TConditions>, NarrowlyContains$1<LogicalReturns$1<TConditions>, boolean>> : never : never;
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$1z$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$1x$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;
7913
+ type Process$1y$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$1x$1<TVal, TOp, TComparator>>;
7920
+ type Compare$1$1<TVal, TOp extends ComparatorOperation$1, TComparator> = WhenNever$1<Process$1y$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$1w$1<TConditions extends readonly boolean[], TBooleanSean extends boolean> = NarrowlyContains$1<TConditions, true> extends true ? true : [IsEqual$1<TBooleanSean, true>] extends [true] ? boolean : false;
7942
+ type Process$1x$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$1w$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", {
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$1x$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$1v$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$1v$1<AfterFirst$1<TElements>, TOp, TComparator>;
7960
+ type Process$1w$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$1w$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$1v$1<TContainer, TOp, TComparator> : TContainer extends Dictionary$1 ? Process$1v$1<Values$1<TContainer>, TOp, TComparator> : never;
7964
+ ]> extends true ? string : Or$1<[IsEqual$1<TOp, "lessThan">, IsEqual$1<TOp, "greaterThan">]> extends true ? NumberLike$1 : unknown> = TContainer extends readonly unknown[] ? Process$1w$1<TContainer, TOp, TComparator> : TContainer extends Dictionary$1 ? Process$1w$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$1u$1<TValue extends string, TComparator extends string> = IsStringLiteral$1<TComparator> extends true ? IsStringLiteral$1<TValue> extends true ? Test$1$1<TValue, TComparator> : boolean : boolean;
8055
+ type Process$1v$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$1u$1<TValue, TComparator[K]>;
8057
+ [K in keyof TComparator]: Process$1v$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$1u$1<TValue, TComparator> : never;
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$1v$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$1t$1<TStr extends string, TChars extends string, _TOp extends "any" | "all"> = TStr extends `${string}${TChars}${string}` ? true : false;
8096
+ type Process$1u$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$1t$1<TStr, TChars, TOp>;
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$1u$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$1s$1<TStr extends string, TChars extends string> = ReplaceAll$1<TStr, TChars, ""> extends "" ? false : true;
8116
+ type Process$1t$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$1s$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$1s$1<TStr, TChars> : TChars extends readonly string[] ? Process$1s$1<TStr, TupleToUnion$1<TChars>> : never;
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$1t$1<TStr, TChars> : TChars extends readonly string[] ? Process$1t$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$1p$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;
8368
+ type Process$1q$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$1p$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$1p$1<T> : false;
8377
+ type IsLiteralUnion$1<T> = [IsUnion$1<T>] extends [true] ? Process$1q$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$1m$1<T, TNever> = [IsNever$1<T>] extends [true] ? TNever : [IsEqual$1<T, true>] extends [true] ? true : false;
8496
+ type Process$1n$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$1m$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$1m$1<T, TNever>;
8510
+ type IsTrue$1<T, TNever = never> = Process$1n$1<T, TNever>;
8511
8511
 
8512
- type Process$1l$1<T> = [IsNever$1<T>] extends [true] ? false : T extends readonly unknown[] ? number extends T["length"] ? false : true : false;
8512
+ type Process$1m$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$1l$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$1l$1<T> extends boolean ? Process$1l$1<T> : never;
8525
+ type IsTuple$1<T> = Process$1m$1<T> extends boolean ? Process$1m$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$1k$1<T extends readonly unknown[]> = {
8677
+ type Process$1l$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$1k$1<T extends readonly unknown[]> = {
8685
8685
  *
8686
8686
  * **Related:** `IsNonLiteralUnion`
8687
8687
  */
8688
- type IsWideUnion$1<T> = [IsUnion$1<T>] extends [true] ? [Process$1k$1<UnionToTuple$1$1<T>>] extends [readonly true[]] ? true : false : false;
8688
+ type IsWideUnion$1<T> = [IsUnion$1<T>] extends [true] ? [Process$1l$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$1j$1<TValue extends string, TComparator extends string | number | readonly string[]> = TComparator extends readonly string[] ? Check$1<[
8777
+ type Process$1k$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$1j$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$1j$1<AsString$1<TValue>, TComparator>, boolean> extends true ? true : Process$1j$1<AsString$1<TValue>, TComparator>;
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$1k$1<AsString$1<TValue>, TComparator>, boolean> extends true ? true : Process$1k$1<AsString$1<TValue>, TComparator>;
8797
8797
 
8798
- type Process$1i$1<T extends readonly unknown[]> = HasArray$1<T> extends true ? true : false;
8798
+ type Process$1j$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$1i$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$1i$1<UnionToTuple$1$1<T>> : false;
8808
+ type UnionHasArray$1<T> = IsUnion$1<T> extends true ? Process$1j$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$1g$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$1g$1<First$1<TTest>, TPass, TRemap> extends TPass ? Iterate$7$1<AfterFirst$1<TTest>, TPass, TRemap> : Process$1g$1<First$1<TTest>, TPass, TRemap>;
8918
+ type Process$1h$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$1h$1<First$1<TTest>, TPass, TRemap> extends TPass ? Iterate$7$1<AfterFirst$1<TTest>, TPass, TRemap> : Process$1h$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$1g$1<TTest, TPass, TRemap extends OnPassRemap$1<never, false, Constant$1<"not-set">> ? TRemap : Merge$1$1<TRemap, Keys$1<TRemap>>>;
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$1h$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$1e$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$1e$1<T, AfterFirst$1<TKeys>, TResults> : Process$1e$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;
9012
+ type Process$1f$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$1f$1<T, AfterFirst$1<TKeys>, TResults> : Process$1f$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$1e$1<T, T extends Tuple$1 ? NumericKeys$1<T> : _Keys$4$1<T>>;
9018
+ type RemoveMarked$1<T extends Container$1> = Process$1f$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$1d$1<T extends `${number}`> = If$1<IsStringLiteral$1<T>, StripLeading$1<T, "-">, string>;
9056
+ type Process$1e$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$1d$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$1d$1<`${T}`>> : T extends `${number}` ? Process$1d$1<T> : never;
9065
+ type Abs$1<T extends NumberLike$1> = T extends number ? AsNumber$1<Process$1e$1<`${T}`>> : T extends `${number}` ? Process$1e$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$1c$1<T, N extends number> = N extends 0 ? [] : MapItemType$1<GrowExp$1<[0], N, []>, T>;
9089
+ type Process$1d$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$1c$1<T, N> extends readonly unknown[] ? Process$1c$1<T, N> : never;
9095
+ type FixedLengthArray$1<T, N extends number> = Process$1d$1<T, N> extends readonly unknown[] ? Process$1d$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$1b$1<TTuple extends readonly string[], TSeparator extends string, TResult extends string = ""> = [] extends TTuple ? TResult : Process$1b$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>}`>;
9118
+ type Process$1c$1<TTuple extends readonly string[], TSeparator extends string, TResult extends string = ""> = [] extends TTuple ? TResult : Process$1c$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$1b$1<Slicer$1<TTuple, TMax, TEllipsis>, TSeparator> : Process$1b$1<ToStringArray$1<TTuple>, TSeparator> : Process$1b$1<ToStringArray$1<TTuple>, TSeparator> : never;
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$1c$1<Slicer$1<TTuple, TMax, TEllipsis>, TSeparator> : Process$1c$1<ToStringArray$1<TTuple>, TSeparator> : Process$1c$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$1a$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>;
9219
+ type Process$1b$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$1a$1<A, B>, `${number}`> : As$1<Process$1a$1<A, AsString$1<B>>, `${number}`> : A extends number ? B extends number ? AsNumber$1<Process$1a$1<`${A}`, `${B}`>> : AsNumber$1<Process$1a$1<`${A}`, As$1<B, `${number}`>>> : never;
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$1b$1<A, B>, `${number}`> : As$1<Process$1b$1<A, AsString$1<B>>, `${number}`> : A extends number ? B extends number ? AsNumber$1<Process$1b$1<`${A}`, `${B}`>> : AsNumber$1<Process$1b$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$17$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;
9416
+ type Process$18$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$17$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$17$1<TList, TupleToUnion$1<TComparator>, TOp>, Process$17$1<TList, TComparator, TOp>>> : never;
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$18$1<TList, TupleToUnion$1<TComparator>, TOp>, Process$18$1<TList, TComparator, TOp>>> : never;
9441
9441
 
9442
9442
  /**
9443
9443
  * Converts a Tuple type into a _union_ of the tuple elements
@@ -9547,7 +9547,7 @@ type _DU$1<T extends string> = T extends Lowercase<T> ? T : `-${Lowercase<T>}`;
9547
9547
  */
9548
9548
  type DashUppercase$1<T extends string> = HasUppercase$1<T> extends false ? T : T extends `${infer C0}${infer C1}${infer R}` ? `${_DU$1<C0>}${_DU$1<C1>}${DashUppercase$1<R>}` : T extends `${infer C0}${infer R}` ? `${_DU$1<C0>}${DashUppercase$1<R>}` : "";
9549
9549
 
9550
- type Process$15$1<TString extends string, TPreserve extends boolean = false> = TPreserve extends true ? Concat$1<[
9550
+ type Process$16$1<TString extends string, TPreserve extends boolean = false> = TPreserve extends true ? Concat$1<[
9551
9551
  LeftWhitespace$1<TString>,
9552
9552
  KebabCase$1<TString, false>,
9553
9553
  RightWhitespace$1<TString>
@@ -9567,7 +9567,7 @@ type Process$15$1<TString extends string, TPreserve extends boolean = false> = T
9567
9567
  * type Dash = Dasherize<"\n foo bar \t">;
9568
9568
  * ```
9569
9569
  */
9570
- type KebabCase$1<TString extends string, TPreserve extends boolean = false> = Process$15$1<TString, TPreserve> extends string ? Process$15$1<TString, TPreserve> : never;
9570
+ type KebabCase$1<TString extends string, TPreserve extends boolean = false> = Process$16$1<TString, TPreserve> extends string ? Process$16$1<TString, TPreserve> : never;
9571
9571
 
9572
9572
  /**
9573
9573
  * **LowerAllCaps**`<T>
@@ -11244,7 +11244,7 @@ type PhoneCountryLookup$1 = Mutable$1<[...typeof PHONE_COUNTRY_CODES$1]>;
11244
11244
  */
11245
11245
  type PhoneCountryCode$1 = FirstOfEach$1<PhoneCountryLookup$1>;
11246
11246
 
11247
- type Process$14$1<T extends string, _TDelimiter extends PhoneNumberDelimiter$1 = PhoneNumberDelimiter$1> = OnPass$1<[
11247
+ type Process$15$1<T extends string, _TDelimiter extends PhoneNumberDelimiter$1 = PhoneNumberDelimiter$1> = OnPass$1<[
11248
11248
  ], T>;
11249
11249
  /**
11250
11250
  * **PhoneNumber**`<[T]>`
@@ -11265,7 +11265,7 @@ type Process$14$1<T extends string, _TDelimiter extends PhoneNumberDelimiter$1 =
11265
11265
  *
11266
11266
  * - Related: `PhoneNumberWithCountryCode`, `UsPhoneNumber`
11267
11267
  */
11268
- type PhoneNumber$1<T extends number | string | null = null, TDelimiter extends PhoneNumberDelimiter$1 = PhoneNumberDelimiter$1> = T extends null ? LocalPhoneNumber$1<TDelimiter> | CountryPhoneNumber$1<TDelimiter> | InternationalPhoneNumber$1<TDelimiter> : IsStringLiteral$1<T> extends true ? Process$14$1<As$1<T, string>, TDelimiter> : IsNumericLiteral$1<T> extends true ? Process$14$1<`${As$1<T, number>}`, TDelimiter> : T extends string ? string | ErrorCondition$1<"invalid-phone-number"> : T extends number ? number | ErrorCondition$1<"invalid-phone-number"> : never;
11268
+ type PhoneNumber$1<T extends number | string | null = null, TDelimiter extends PhoneNumberDelimiter$1 = PhoneNumberDelimiter$1> = T extends null ? LocalPhoneNumber$1<TDelimiter> | CountryPhoneNumber$1<TDelimiter> | InternationalPhoneNumber$1<TDelimiter> : IsStringLiteral$1<T> extends true ? Process$15$1<As$1<T, string>, TDelimiter> : IsNumericLiteral$1<T> extends true ? Process$15$1<`${As$1<T, number>}`, TDelimiter> : T extends string ? string | ErrorCondition$1<"invalid-phone-number"> : T extends number ? number | ErrorCondition$1<"invalid-phone-number"> : never;
11269
11269
  type PhoneNumberWithCountryCode$1 = `+${PhoneCountryCode$1} ${string}`;
11270
11270
  type Sep$1 = "." | " " | "-";
11271
11271
  type AreaCode$1 = `(${number}) ` | `${number}${Sep$1}`;
@@ -11961,7 +11961,7 @@ type YouTubeVideosInPlaylist$1 = `https://www.youtube.com/playlist?${string}list
11961
11961
  */
11962
11962
  type GetYouTubePageType$1<T> = T extends YouTubeUrl$1 ? T extends YouTubeHome$1 ? "home" : T extends YouTubeVideoUrl$1 ? HasQueryParameter$1<T, "list"> extends true ? T extends YouTubeShareUrl$1 ? HasQueryParameter$1<T, "t"> extends true ? "play::video::in-list::share-link::with-timestamp" : "play::video::in-list::share-link" : "play::video::in-list" : T extends YouTubeShareUrl$1 ? HasQueryParameter$1<T, "t"> extends true ? "play::video::solo::share-link::with-timestamp" : "play::video::solo::share-link" : "play::video::solo" : T extends YouTubeCreatorUrl$1 ? GetUrlPath$1<T> extends `${string}/videos` ? "creator::videos" : GetUrlPath$1<T> extends `${string}/playlists` ? "creator::playlists" : Last$1<Split$1<GetUrlPath$1<T>, "/">> extends `@${string}` ? "creator::featured" : GetUrlPath$1<T> extends `${string}/featured` ? "creator::featured" : "creator::other" : T extends YouTubeFeedUrl$1 ? T extends YouTubeFeedUrl$1<"history"> ? "feed::history" : T extends YouTubeFeedUrl$1<"playlists"> ? "feed::playlists" : T extends YouTubeFeedUrl$1<"liked"> ? "feed::liked" : T extends YouTubeFeedUrl$1<"subscriptions"> ? "feed::subscriptions" : T extends YouTubeFeedUrl$1<"trending"> ? "feed::trending" : "feed::other" : T extends YouTubeVideosInPlaylist$1 ? "playlist::show" : "other" : never;
11963
11963
 
11964
- type Process$12$1<TStr extends string, TResult extends readonly string[] = []> = IsStringLiteral$1<TStr> extends true ? IsEqual$1<TStr["length"], 0> extends true ? [] : TStr extends `${infer Char}${infer Rest}` ? Process$12$1<Rest, [
11964
+ type Process$13$1<TStr extends string, TResult extends readonly string[] = []> = IsStringLiteral$1<TStr> extends true ? IsEqual$1<TStr["length"], 0> extends true ? [] : TStr extends `${infer Char}${infer Rest}` ? Process$13$1<Rest, [
11965
11965
  ...TResult,
11966
11966
  Char
11967
11967
  ]> : TResult : string;
@@ -11970,10 +11970,10 @@ type Process$12$1<TStr extends string, TResult extends readonly string[] = []> =
11970
11970
  *
11971
11971
  * Takes a literal string and converts it to an array of characters.
11972
11972
  */
11973
- type Chars$1<TStr extends string> = IsStringLiteral$1<TStr> extends true ? Process$12$1<TStr> extends readonly string[] ? Process$12$1<TStr> : never : readonly string[];
11973
+ type Chars$1<TStr extends string> = IsStringLiteral$1<TStr> extends true ? Process$13$1<TStr> extends readonly string[] ? Process$13$1<TStr> : never : readonly string[];
11974
11974
 
11975
11975
  type ElementLiteral$1<T> = [T] extends [string] ? IsStringLiteral$1<T> extends true ? T : string : [T] extends [number] ? IsNumericLiteral$1<T> extends true ? T : `${number}` : [T] extends [boolean] ? IsBooleanLiteral$1<T> extends true ? T : `${boolean}` : never;
11976
- type Process$11$1<T extends Tuple$1, Result extends string = ""> = [] extends T ? Result : Process$11$1<AfterFirst$1<T>, `${Result}${ElementLiteral$1<First$1<T>>}`>;
11976
+ type Process$12$1<T extends Tuple$1, Result extends string = ""> = [] extends T ? Result : Process$12$1<AfterFirst$1<T>, `${Result}${ElementLiteral$1<First$1<T>>}`>;
11977
11977
  /**
11978
11978
  * **Concat**`<T>`
11979
11979
  *
@@ -11989,7 +11989,7 @@ type Process$11$1<T extends Tuple$1, Result extends string = ""> = [] extends T
11989
11989
  *
11990
11990
  * **Related:** `Join<TArr,TWith>`
11991
11991
  */
11992
- type Concat$1<T extends readonly unknown[]> = Process$11$1<T>;
11992
+ type Concat$1<T extends readonly unknown[]> = Process$12$1<T>;
11993
11993
 
11994
11994
  /**
11995
11995
  * The ISO8601 standard means of representing a _timezone_. `Z` by itself represents UTC.
@@ -12050,9 +12050,9 @@ type Iso8601Time$1<TExplicit extends IsoExplicitness$1 = "both", TZ extends Time
12050
12050
  */
12051
12051
  type Iso8601DateTime$1<TZ extends Timezone$1 | "" = Timezone$1 | ""> = `${number}-${number}-${number}T${number}:${number}:${number}${TZ}`;
12052
12052
 
12053
- type Process$10$1<TContent extends string, TLeading extends string> = TContent extends `${TLeading}${string}` ? TContent : `${TLeading}${TContent}`;
12053
+ type Process$11$1<TContent extends string, TLeading extends string> = TContent extends `${TLeading}${string}` ? TContent : `${TLeading}${TContent}`;
12054
12054
  type IterateOver$1$1<TContent extends readonly (string | number)[], TLeading extends string | number> = {
12055
- [K in keyof TContent]: TContent[K] extends string ? Process$10$1<TContent[K], AsStringUnion$1<TLeading>> : TContent[K] extends number ? AsNumber$1<Process$10$1<`${TContent[K]}`, AsStringUnion$1<TLeading>>> : never;
12055
+ [K in keyof TContent]: TContent[K] extends string ? Process$11$1<TContent[K], AsStringUnion$1<TLeading>> : TContent[K] extends number ? AsNumber$1<Process$11$1<`${TContent[K]}`, AsStringUnion$1<TLeading>>> : never;
12056
12056
  };
12057
12057
  type WideContent$1<TContent extends string | number, TLeading extends string | number> = IsString$1<TContent> extends true ? `${TLeading}${string}` : number;
12058
12058
  type WideLeading$1<TContent extends string | number, TLeading extends string | number> = TContent extends string ? `${TLeading}${TContent}` : number;
@@ -12077,7 +12077,7 @@ type WideLeading$1<TContent extends string | number, TLeading extends string | n
12077
12077
  *
12078
12078
  * **Related:** `EnsureLeadingEvery`, `EnsureTrailing`, `EnsureSurround`, `Surround`
12079
12079
  */
12080
- type EnsureLeading$1<TContent extends string | number | readonly (string | number)[], TLeading extends string | number> = TContent extends readonly (string | number)[] ? IterateOver$1$1<TContent, TLeading> : IsWideType$1<TContent> extends true ? WideContent$1<As$1<TContent, string | number>, TLeading> : IsWideType$1<TLeading> extends true ? WideLeading$1<As$1<TContent, string | number>, TLeading> : TContent extends string ? Process$10$1<TContent, AsStringUnion$1<TLeading>> : TContent extends number ? AsNumber$1<Process$10$1<`${TContent}`, AsStringUnion$1<TLeading>>> : never;
12080
+ type EnsureLeading$1<TContent extends string | number | readonly (string | number)[], TLeading extends string | number> = TContent extends readonly (string | number)[] ? IterateOver$1$1<TContent, TLeading> : IsWideType$1<TContent> extends true ? WideContent$1<As$1<TContent, string | number>, TLeading> : IsWideType$1<TLeading> extends true ? WideLeading$1<As$1<TContent, string | number>, TLeading> : TContent extends string ? Process$11$1<TContent, AsStringUnion$1<TLeading>> : TContent extends number ? AsNumber$1<Process$11$1<`${TContent}`, AsStringUnion$1<TLeading>>> : never;
12081
12081
 
12082
12082
  /**
12083
12083
  * **EnsureSurround**
@@ -12639,7 +12639,7 @@ type TypeStrength$1 = "strong" | "simple";
12639
12639
  type StripSlash$1<T extends readonly string[]> = {
12640
12640
  [K in keyof T]: T[K] extends `/${infer Middle}/` ? Middle : T[K] extends `/${infer Trailing}` ? Trailing : T[K] extends `${infer Leading}/` ? Leading : T[K];
12641
12641
  };
12642
- type Process$Z$1<TPath extends string, TFirst extends string, TLast extends string> = TFirst extends `/${string}` ? TLast extends `${string}/` ? `/${TPath}/` : `/${TPath}` : TLast extends `${string}/` ? `${TPath}/` : TPath;
12642
+ type Process$_$1<TPath extends string, TFirst extends string, TLast extends string> = TFirst extends `/${string}` ? TLast extends `${string}/` ? `/${TPath}/` : `/${TPath}` : TLast extends `${string}/` ? `${TPath}/` : TPath;
12643
12643
  /**
12644
12644
  * **PathJoin**`<T,U>`
12645
12645
  *
@@ -12653,7 +12653,7 @@ type Process$Z$1<TPath extends string, TFirst extends string, TLast extends stri
12653
12653
  * `EnsureStarting<T>`, and `StripStarting<T>` to further shape
12654
12654
  * the type.
12655
12655
  */
12656
- type PathJoin$1<TSegments extends readonly string[]> = StripSlash$1<TSegments> extends readonly string[] ? Process$Z$1<Join$1<StripSlash$1<TSegments>, "/">, First$1<TSegments>, Last$1<TSegments>> : never;
12656
+ type PathJoin$1<TSegments extends readonly string[]> = StripSlash$1<TSegments> extends readonly string[] ? Process$_$1<Join$1<StripSlash$1<TSegments>, "/">, First$1<TSegments>, Last$1<TSegments>> : never;
12657
12657
 
12658
12658
  type ExceptionLookup$1 = typeof PLURAL_EXCEPTIONS$1;
12659
12659
  type SingularNoun$2 = "s" | "sh" | "ch" | "x" | "z" | "o";
@@ -12725,7 +12725,7 @@ type _RetainAfter$1<TStr extends string, TBreak extends string, TInclude extends
12725
12725
  */
12726
12726
  type RetainAfter$1<TStr extends string, TBreak extends string, TInclude extends boolean = false> = IsNever$1<_RetainAfter$1<TStr, TBreak, TInclude>> extends true ? "" : IsUnion$1<_RetainAfter$1<TStr, TBreak, TInclude>> extends true ? MaxLength$1<UnionToTuple$1$1<_RetainAfter$1<TStr, TBreak, TInclude>>> : _RetainAfter$1<TStr, TBreak, TInclude>;
12727
12727
 
12728
- type Process$Y$1<TChars extends readonly string[], TOp extends "is" | "not", TComparator extends string, TInclude extends boolean = false, TResult extends string = ""> = [] extends TChars ? TResult : First$1<TChars> extends TComparator ? TOp extends "is" ? Process$Y$1<AfterFirst$1<TChars>, TOp, TComparator, TInclude, `${TResult}${First$1<TChars>}`> : If$1<TInclude, `${TResult}${First$1<TChars>}`, TResult> : TOp extends "is" ? If$1<TInclude, `${TResult}${First$1<TChars>}`, TResult> : Process$Y$1<AfterFirst$1<TChars>, TOp, TComparator, TInclude, `${TResult}${First$1<TChars>}`>;
12728
+ type Process$Z$1<TChars extends readonly string[], TOp extends "is" | "not", TComparator extends string, TInclude extends boolean = false, TResult extends string = ""> = [] extends TChars ? TResult : First$1<TChars> extends TComparator ? TOp extends "is" ? Process$Z$1<AfterFirst$1<TChars>, TOp, TComparator, TInclude, `${TResult}${First$1<TChars>}`> : If$1<TInclude, `${TResult}${First$1<TChars>}`, TResult> : TOp extends "is" ? If$1<TInclude, `${TResult}${First$1<TChars>}`, TResult> : Process$Z$1<AfterFirst$1<TChars>, TOp, TComparator, TInclude, `${TResult}${First$1<TChars>}`>;
12729
12729
  /**
12730
12730
  * **RetainUntil**`<TContent,TComparator>`
12731
12731
  *
@@ -12739,7 +12739,7 @@ type Process$Y$1<TChars extends readonly string[], TOp extends "is" | "not", TCo
12739
12739
  *
12740
12740
  * **Related:** `RetainWhile`
12741
12741
  */
12742
- type RetainUntil$1<TContent extends string, TComparator extends string, TInclude extends boolean = false> = Process$Y$1<Chars$1<TContent>, "not", TComparator, TInclude>;
12742
+ type RetainUntil$1<TContent extends string, TComparator extends string, TInclude extends boolean = false> = Process$Z$1<Chars$1<TContent>, "not", TComparator, TInclude>;
12743
12743
  /**
12744
12744
  * **RetainWhile**`<TContent,TComparator>`
12745
12745
  *
@@ -12753,7 +12753,7 @@ type RetainUntil$1<TContent extends string, TComparator extends string, TInclude
12753
12753
  *
12754
12754
  * **Related:** `RetainUntil`
12755
12755
  */
12756
- type RetainWhile$1<TContent extends string, TComparator extends string> = Process$Y$1<Chars$1<TContent>, "is", TComparator>;
12756
+ type RetainWhile$1<TContent extends string, TComparator extends string> = Process$Z$1<Chars$1<TContent>, "is", TComparator>;
12757
12757
 
12758
12758
  type Policy$1 = "omit" | "before" | "after";
12759
12759
  type Postfix$1<T extends string> = ["postfix", T];
@@ -12770,7 +12770,7 @@ type EachBlock$1<TContent extends readonly (string | Postfix$1<string>)[], TSep
12770
12770
  First$1<TContent>
12771
12771
  ]>;
12772
12772
  type Iterate$3$1<TContent extends readonly (string | Postfix$1<string>)[], TSep extends readonly string[], TPolicy extends Policy$1> = [] extends TSep ? FixPostfix$1<Filter$1<TContent, "", "equals">> : Iterate$3$1<EachBlock$1<TContent, First$1<TSep>, TPolicy>, AfterFirst$1<TSep>, TPolicy>;
12773
- type Process$X$1<TContent extends string, TSep extends string | readonly string[], TPolicy extends Policy$1 = "omit"> = IsLiteral$1<TSep> extends true ? TSep extends "" ? ErrMsg$1<"invalid-separator", `Split<T>: an empty string was used as a separator. Use Chars<T> if you want to split a string into characters!`> : TSep extends readonly string[] ? Iterate$3$1<[TContent], TSep, TPolicy> : TSep extends string ? Convert$3$1<TContent, TSep, TPolicy> extends readonly (string | Postfix$1<string>)[] ? FixPostfix$1<Convert$3$1<TContent, TSep, TPolicy>> : never : never : never;
12773
+ type Process$Y$1<TContent extends string, TSep extends string | readonly string[], TPolicy extends Policy$1 = "omit"> = IsLiteral$1<TSep> extends true ? TSep extends "" ? ErrMsg$1<"invalid-separator", `Split<T>: an empty string was used as a separator. Use Chars<T> if you want to split a string into characters!`> : TSep extends readonly string[] ? Iterate$3$1<[TContent], TSep, TPolicy> : TSep extends string ? Convert$3$1<TContent, TSep, TPolicy> extends readonly (string | Postfix$1<string>)[] ? FixPostfix$1<Convert$3$1<TContent, TSep, TPolicy>> : never : never : never;
12774
12774
  /**
12775
12775
  * **Split**`<TContent,TSep,[TPolicy]>`
12776
12776
  *
@@ -12785,7 +12785,7 @@ type Process$X$1<TContent extends string, TSep extends string | readonly string[
12785
12785
  * than `SplitAlt` but there are instances where `SplitAlt` is more performant
12786
12786
  * in inference.
12787
12787
  */
12788
- type Split$1<TContent extends string, TSep extends string | readonly string[], TPolicy extends Policy$1 = "omit"> = IsStringLiteral$1<TContent> extends true ? IsUnion$1<TSep> extends true ? UnionToTuple$1$1<TSep> extends readonly string[] ? Split$1<TContent, UnionToTuple$1$1<TSep>, TPolicy> : ErrMsg$1<"invalid-union"> : Process$X$1<TContent, TSep, TPolicy> : string[];
12788
+ type Split$1<TContent extends string, TSep extends string | readonly string[], TPolicy extends Policy$1 = "omit"> = IsStringLiteral$1<TContent> extends true ? IsUnion$1<TSep> extends true ? UnionToTuple$1$1<TSep> extends readonly string[] ? Split$1<TContent, UnionToTuple$1$1<TSep>, TPolicy> : ErrMsg$1<"invalid-union"> : Process$Y$1<TContent, TSep, TPolicy> : string[];
12789
12789
 
12790
12790
  type UnionPolicy$1 = "omit" | "include";
12791
12791
  type UnionSplit$1<TContent extends readonly string[], TSep extends string, TUnionPolicy extends UnionPolicy$1, TResult extends readonly string[] = []> = [] extends TContent ? TResult : UnionSplit$1<AfterFirst$1<TContent>, // advance to next character
@@ -12800,8 +12800,8 @@ type LiteralSplit$1<TContent extends string, TSep extends string, TUnionPolicy e
12800
12800
  ...TResults,
12801
12801
  TUnionPolicy extends "omit" ? Block : `${Block}${TSep}`
12802
12802
  ]> : Filter$1<[...TResults, TContent], "">;
12803
- type Process$W$1<TContent extends string, TSep extends string | readonly string[], TUnionPolicy extends UnionPolicy$1 = "omit"> = IsWideType$1<TContent> extends true ? string : TSep extends readonly string[] ? TupleToUnion$1<TSep> extends string ? Chars$1<TContent> extends readonly string[] ? UnionSplit$1<Chars$1<TContent>, TupleToUnion$1<TSep>, TUnionPolicy> : never : never : TSep extends string ? LiteralSplit$1<TContent, TSep, TUnionPolicy> : never;
12804
- type PreProcess$1$1<TContent extends string, TSep extends string | readonly string[], TUnionPolicy extends UnionPolicy$1 = "omit"> = IsUnion$1<TSep> extends true ? UnionToTuple$1$1<TSep> extends readonly string[] ? Process$W$1<TContent, UnionToTuple$1$1<TSep>, TUnionPolicy> : never : Process$W$1<TContent, TSep, TUnionPolicy>;
12803
+ type Process$X$1<TContent extends string, TSep extends string | readonly string[], TUnionPolicy extends UnionPolicy$1 = "omit"> = IsWideType$1<TContent> extends true ? string : TSep extends readonly string[] ? TupleToUnion$1<TSep> extends string ? Chars$1<TContent> extends readonly string[] ? UnionSplit$1<Chars$1<TContent>, TupleToUnion$1<TSep>, TUnionPolicy> : never : never : TSep extends string ? LiteralSplit$1<TContent, TSep, TUnionPolicy> : never;
12804
+ type PreProcess$1$1<TContent extends string, TSep extends string | readonly string[], TUnionPolicy extends UnionPolicy$1 = "omit"> = IsUnion$1<TSep> extends true ? UnionToTuple$1$1<TSep> extends readonly string[] ? Process$X$1<TContent, UnionToTuple$1$1<TSep>, TUnionPolicy> : never : Process$X$1<TContent, TSep, TUnionPolicy>;
12805
12805
  /**
12806
12806
  * **SplitAlt**`<TContent,TSep,[TPolicy]>`
12807
12807
  *
@@ -12841,7 +12841,7 @@ type StripAfter$1<TStr extends string, TBreak extends string> = IsStringLiteral$
12841
12841
  */
12842
12842
  type StripBefore$1<TStr extends string, TBreak extends string> = IsStringLiteral$1<TStr> extends true ? IsStringLiteral$1<TBreak> extends true ? TStr extends `${string}${TBreak}${infer REST}` ? `${REST}` : TStr : string : string;
12843
12843
 
12844
- type Process$V$1<TContent extends string, TStrip extends string> = And$1<[IsStringLiteral$1<TContent>, IsStringLiteral$1<TStrip>]> extends true ? TContent extends `${TStrip & string}${infer After}` ? After : TContent : string;
12844
+ type Process$W$1<TContent extends string, TStrip extends string> = And$1<[IsStringLiteral$1<TContent>, IsStringLiteral$1<TStrip>]> extends true ? TContent extends `${TStrip & string}${infer After}` ? After : TContent : string;
12845
12845
  /**
12846
12846
  * **StripLeading**`<T, U>`
12847
12847
  *
@@ -12858,9 +12858,9 @@ type Process$V$1<TContent extends string, TStrip extends string> = And$1<[IsStri
12858
12858
  * - if `T` is a non-string type then no transformation will be done
12859
12859
  * - same applies to `U`
12860
12860
  */
12861
- type StripLeading$1<TContent extends string | number, TStrip extends string | number> = TContent extends number ? AsNumber$1<Process$V$1<`${TContent}`, AsStringUnion$1<TStrip>>> : TContent extends string ? Process$V$1<TContent, AsStringUnion$1<TStrip>> : never;
12861
+ type StripLeading$1<TContent extends string | number, TStrip extends string | number> = TContent extends number ? AsNumber$1<Process$W$1<`${TContent}`, AsStringUnion$1<TStrip>>> : TContent extends string ? Process$W$1<TContent, AsStringUnion$1<TStrip>> : never;
12862
12862
 
12863
- type Process$U$1<TContent extends string, TSurround extends string> = TContent extends `${TSurround}${infer REMAIN}` ? REMAIN extends `${infer LEADING}${TSurround}` ? LEADING : REMAIN : TContent extends `${infer LEADING}${TSurround}` ? LEADING : TContent;
12863
+ type Process$V$1<TContent extends string, TSurround extends string> = TContent extends `${TSurround}${infer REMAIN}` ? REMAIN extends `${infer LEADING}${TSurround}` ? LEADING : REMAIN : TContent extends `${infer LEADING}${TSurround}` ? LEADING : TContent;
12864
12864
  /**
12865
12865
  * **StripSurround**`<TContent, TSurround>`
12866
12866
  *
@@ -12872,9 +12872,9 @@ type Process$U$1<TContent extends string, TSurround extends string> = TContent e
12872
12872
  * type Hello = StripSurround<"(Hi there)", "(" | ")">;
12873
12873
  * ```
12874
12874
  */
12875
- type StripSurround$1<TContent extends string | number, TSurround extends string | number> = IsWideType$1<TContent> extends true ? TContent : TContent extends string ? Process$U$1<TContent, AsStringUnion$1<TSurround>> : AsNumber$1<Process$U$1<`${TContent}`, AsStringUnion$1<TSurround>>>;
12875
+ type StripSurround$1<TContent extends string | number, TSurround extends string | number> = IsWideType$1<TContent> extends true ? TContent : TContent extends string ? Process$V$1<TContent, AsStringUnion$1<TSurround>> : AsNumber$1<Process$V$1<`${TContent}`, AsStringUnion$1<TSurround>>>;
12876
12876
 
12877
- type Process$T$1<TContent extends string, TStrip extends string> = And$1<[IsStringLiteral$1<TContent>, IsStringLiteral$1<TStrip>]> extends true ? TContent extends `${infer Before}${TStrip}` ? Before : TContent : string;
12877
+ type Process$U$1<TContent extends string, TStrip extends string> = And$1<[IsStringLiteral$1<TContent>, IsStringLiteral$1<TStrip>]> extends true ? TContent extends `${infer Before}${TStrip}` ? Before : TContent : string;
12878
12878
  /**
12879
12879
  * **StripEnding**`<TContent, TStrip>`
12880
12880
  *
@@ -12888,23 +12888,23 @@ type Process$T$1<TContent extends string, TStrip extends string> = And$1<[IsStri
12888
12888
  * type R = StripEnding<T,U>;
12889
12889
  * ```
12890
12890
  */
12891
- type StripTrailing$1<TContent extends string | number, TStrip extends string | number> = TContent extends number ? AsNumber$1<Process$T$1<`${TContent}`, `${TStrip}`> extends `${number}` ? Process$T$1<`${TContent}`, `${TStrip}`> : never> : TContent extends string ? Process$T$1<`${TContent}`, `${TStrip}`> extends string ? Process$T$1<`${TContent}`, `${TStrip}`> : never : never;
12891
+ type StripTrailing$1<TContent extends string | number, TStrip extends string | number> = TContent extends number ? AsNumber$1<Process$U$1<`${TContent}`, `${TStrip}`> extends `${number}` ? Process$U$1<`${TContent}`, `${TStrip}`> : never> : TContent extends string ? Process$U$1<`${TContent}`, `${TStrip}`> extends string ? Process$U$1<`${TContent}`, `${TStrip}`> : never : never;
12892
12892
 
12893
- type Process$S$1<TChars extends readonly string[], TOp extends "is" | "not", TComparator extends string, TResult extends string> = [] extends TChars ? TResult : First$1<TChars> extends TComparator ? TOp extends "is" ? Process$S$1<AfterFirst$1<TChars>, TOp, TComparator, Shift$2<TResult> extends string ? Shift$2<TResult> : ""> : TResult : TOp extends "is" ? TResult : Process$S$1<AfterFirst$1<TChars>, TOp, TComparator, Shift$2<TResult> extends string ? Shift$2<TResult> : "">;
12893
+ type Process$T$1<TChars extends readonly string[], TOp extends "is" | "not", TComparator extends string, TResult extends string> = [] extends TChars ? TResult : First$1<TChars> extends TComparator ? TOp extends "is" ? Process$T$1<AfterFirst$1<TChars>, TOp, TComparator, Shift$2<TResult> extends string ? Shift$2<TResult> : ""> : TResult : TOp extends "is" ? TResult : Process$T$1<AfterFirst$1<TChars>, TOp, TComparator, Shift$2<TResult> extends string ? Shift$2<TResult> : "">;
12894
12894
  /**
12895
12895
  * **StripUntil**`<TContent,TComparator>`
12896
12896
  *
12897
12897
  * Strip characters from the start of `TContent` _until_ a
12898
12898
  * character extends `TComparator`.
12899
12899
  */
12900
- type StripUntil$1<TContent extends string, TComparator extends string> = Process$S$1<Chars$1<TContent>, "not", TComparator, TContent>;
12900
+ type StripUntil$1<TContent extends string, TComparator extends string> = Process$T$1<Chars$1<TContent>, "not", TComparator, TContent>;
12901
12901
  /**
12902
12902
  * **StripWhile**`<TContent,TComparator>`
12903
12903
  *
12904
12904
  * Strip characters from the start of `TContent` _while_ those
12905
12905
  * characters extend `TComparator`.
12906
12906
  */
12907
- type StripWhile$1<TContent extends string, TComparator extends string> = Process$S$1<Chars$1<TContent>, "is", TComparator, TContent>;
12907
+ type StripWhile$1<TContent extends string, TComparator extends string> = Process$T$1<Chars$1<TContent>, "is", TComparator, TContent>;
12908
12908
 
12909
12909
  type Compute$1<TStr extends string, TLen extends Tuple$1 = []> = TStr extends `${infer _Char}${infer Rest}` ? Compute$1<Rest, [...TLen, unknown]> : TLen["length"];
12910
12910
  /**
@@ -12915,9 +12915,9 @@ type Compute$1<TStr extends string, TLen extends Tuple$1 = []> = TStr extends `$
12915
12915
  */
12916
12916
  type StrLen$1<T extends string> = Compute$1<T>;
12917
12917
 
12918
- type Process$R$1<TContent extends string, TPrefix extends string, TPostfix extends string> = `${TPrefix}${TContent}${TPostfix}`;
12918
+ type Process$S$1<TContent extends string, TPrefix extends string, TPostfix extends string> = `${TPrefix}${TContent}${TPostfix}`;
12919
12919
  type ProcessEach$2<TContent extends readonly string[], TPrefix extends string, TPostfix extends string> = {
12920
- [K in keyof TContent]: Process$R$1<TContent[K], TPrefix, TPostfix>;
12920
+ [K in keyof TContent]: Process$S$1<TContent[K], TPrefix, TPostfix>;
12921
12921
  };
12922
12922
  /**
12923
12923
  * **Surround**`<TContent,TPrefix,TPostfix>`
@@ -12932,7 +12932,7 @@ type ProcessEach$2<TContent extends readonly string[], TPrefix extends string, T
12932
12932
  * type T2 = Surround<["one","two"], "<",">">;
12933
12933
  * ```
12934
12934
  */
12935
- type Surround$1<TContent extends string | number | readonly (string | number)[], TPrefix extends string, TPostfix extends string> = TContent extends number ? Surround$1<`${TContent}`, TPrefix, TPostfix> : TContent extends readonly unknown[] ? TContent extends readonly string[] ? ProcessEach$2<TContent, TPrefix, TPostfix> : ProcessEach$2<ToStringArray$1<TContent> extends readonly string[] ? ToStringArray$1<TContent> : never, TPrefix, TPostfix> : TContent extends string ? Process$R$1<TContent, TPrefix, TPostfix> : never;
12935
+ type Surround$1<TContent extends string | number | readonly (string | number)[], TPrefix extends string, TPostfix extends string> = TContent extends number ? Surround$1<`${TContent}`, TPrefix, TPostfix> : TContent extends readonly unknown[] ? TContent extends readonly string[] ? ProcessEach$2<TContent, TPrefix, TPostfix> : ProcessEach$2<ToStringArray$1<TContent> extends readonly string[] ? ToStringArray$1<TContent> : never, TPrefix, TPostfix> : TContent extends string ? Process$S$1<TContent, TPrefix, TPostfix> : never;
12936
12936
 
12937
12937
  type CivilianTwoDigitHour$1 = "10" | "11" | "12";
12938
12938
  type TimeResolution$1 = "HH:MM" | "HH:MM:SS" | "HH:MM:SS.ms";
@@ -13114,7 +13114,7 @@ type TypeSubtype$1 = `${string}/${string}` & {
13114
13114
  brand: "type-subtype";
13115
13115
  };
13116
13116
 
13117
- type Process$Q$1<T> = T extends NumberLike$1 ? AsNumber$1<T> : T extends BooleanLike$1 ? AsBoolean$1<T> : T;
13117
+ type Process$R$1<T> = T extends NumberLike$1 ? AsNumber$1<T> : T extends BooleanLike$1 ? AsBoolean$1<T> : T;
13118
13118
  /**
13119
13119
  * **UnderlyingType**`<T>`
13120
13120
  *
@@ -13127,8 +13127,8 @@ type Process$Q$1<T> = T extends NumberLike$1 ? AsNumber$1<T> : T extends Boolean
13127
13127
  * In all other cases it simply proxies the type of `T` through.
13128
13128
  */
13129
13129
  type UnderlyingType$1<T> = T extends readonly unknown[] ? {
13130
- [K in keyof T]: Process$Q$1<T[K]>;
13131
- } : Process$Q$1<T>;
13130
+ [K in keyof T]: Process$R$1<T[K]>;
13131
+ } : Process$R$1<T>;
13132
13132
 
13133
13133
  /**
13134
13134
  * **JsonValue**`<T>`
@@ -13205,7 +13205,7 @@ type MutableArray$1<T extends readonly unknown[]> = [
13205
13205
  */
13206
13206
  type Mutable$1<T> = [T] extends [readonly unknown[]] ? MutableArray$1<T> : [T] extends [boolean] ? T : [IsObjectLiteral$1<T>] extends [true] ? MutableObject$1<T> : T;
13207
13207
 
13208
- type Process$O$1<TSource extends AnyObject$1, TKeys extends readonly (ObjectKey$1 & keyof TSource)[], TTuple extends readonly KeyValue$1[] = []> = [] extends TKeys ? TTuple : Process$O$1<TSource, AfterFirst$1<TKeys>, [
13208
+ type Process$P$1<TSource extends AnyObject$1, TKeys extends readonly (ObjectKey$1 & keyof TSource)[], TTuple extends readonly KeyValue$1[] = []> = [] extends TKeys ? TTuple : Process$P$1<TSource, AfterFirst$1<TKeys>, [
13209
13209
  ...TTuple,
13210
13210
  {
13211
13211
  key: First$1<TKeys>;
@@ -13229,10 +13229,10 @@ type Compact$1<TSource extends AnyObject$1, TKeys extends readonly (ObjectKey$1
13229
13229
  * type C = ObjectToTuple< foo: 1 }, true>;
13230
13230
  * ```
13231
13231
  */
13232
- 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$O$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)[]>>;
13232
+ 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
13233
 
13234
13234
  type Prefix$2$1<T extends boolean> = T extends true ? "\n " : "";
13235
- type Process$N$1<T extends readonly Record<ObjectKey$1, any>[], E extends boolean> = Join$1<{
13235
+ type Process$O$1<T extends readonly Record<ObjectKey$1, any>[], E extends boolean> = Join$1<{
13236
13236
  [K in keyof T]: T[K] extends Record<infer Key extends string, infer Value> ? `${Prefix$2$1<E>}${Key}: ${AsString$1<Value>}` : never;
13237
13237
  }, "; ">;
13238
13238
  /**
@@ -13242,10 +13242,10 @@ type Process$N$1<T extends readonly Record<ObjectKey$1, any>[], E extends boolea
13242
13242
  *
13243
13243
  * **Related:** `ObjectToJsString`, `ObjectToJsonString`, `ObjectToTuple`
13244
13244
  */
13245
- type ObjectToCssString$1<TObj extends AnyObject$1, TExpand extends boolean = false> = TObj extends ExplicitlyEmptyObject$1 ? "{}" : IsWideContainer$1<TObj> extends true ? string : Surround$1<Process$N$1<ObjectToTuple$1<TObj, true>, false>, TExpand extends false ? "{ " : "{", TExpand extends false ? " }" : "\n}">;
13245
+ type ObjectToCssString$1<TObj extends AnyObject$1, TExpand extends boolean = false> = TObj extends ExplicitlyEmptyObject$1 ? "{}" : IsWideContainer$1<TObj> extends true ? string : Surround$1<Process$O$1<ObjectToTuple$1<TObj, true>, false>, TExpand extends false ? "{ " : "{", TExpand extends false ? " }" : "\n}">;
13246
13246
 
13247
13247
  type Prefix$3<T extends boolean> = T extends true ? "\n " : "";
13248
- type Process$K$1<T extends readonly Record<ObjectKey$1, any>[], E extends boolean> = Join$1<{
13248
+ type Process$L$1<T extends readonly Record<ObjectKey$1, any>[], E extends boolean> = Join$1<{
13249
13249
  [K in keyof T]: T[K] extends Record<infer Key extends string, infer Value> ? Value extends AnyObject$1 ? `${Prefix$3<E>}${Key} ${AsString$1<Value>}` : never : never;
13250
13250
  }, "\n ">;
13251
13251
  /**
@@ -13255,7 +13255,7 @@ type Process$K$1<T extends readonly Record<ObjectKey$1, any>[], E extends boolea
13255
13255
  *
13256
13256
  * **Related:** `ObjectToJsString`, `ObjectToJsonString`, `ObjectToTuple`, `ObjectToCssString`
13257
13257
  */
13258
- type ObjectToKeyframeString$1<TObj extends AnyObject$1, TExpand extends boolean = false> = TObj extends ExplicitlyEmptyObject$1 ? "{}" : IsWideContainer$1<TObj> extends true ? string : Surround$1<Process$K$1<ObjectToTuple$1<TObj, true>, false>, TExpand extends false ? "{ " : "{\n ", TExpand extends false ? " }" : "\n}">;
13258
+ type ObjectToKeyframeString$1<TObj extends AnyObject$1, TExpand extends boolean = false> = TObj extends ExplicitlyEmptyObject$1 ? "{}" : IsWideContainer$1<TObj> extends true ? string : Surround$1<Process$L$1<ObjectToTuple$1<TObj, true>, false>, TExpand extends false ? "{ " : "{\n ", TExpand extends false ? " }" : "\n}">;
13259
13259
 
13260
13260
  /**
13261
13261
  * **RemoveIndex**`<T>`
@@ -13290,9 +13290,9 @@ type RemoveIndex$1<T extends Record<any, any>> = {
13290
13290
  */
13291
13291
  type Replace$1<TText extends string, TFind extends string, TReplace extends string> = TText extends "" ? If$1<IsEqual$1<TFind, "">, TReplace, ""> : TFind extends "" ? TText : TText extends `${infer F}${TFind}${infer E}` ? `${F}${TReplace}${E}` : TText;
13292
13292
 
13293
- type Process$J$1<TText extends string, TFind extends string, TReplace extends string> = Replace$1<TText, TFind, TReplace> extends `${string}${TFind}${string}` ? Process$J$1<Replace$1<TText, TFind, TReplace>, TFind, TReplace> : Replace$1<TText, TFind, TReplace>;
13294
- type Iterate$2$1<TText extends string, TFind extends readonly string[], TReplace extends string> = [] extends TFind ? TText : Iterate$2$1<Process$J$1<TText, First$1<TFind>, TReplace>, AfterFirst$1<TFind>, TReplace>;
13295
- type Singular$1<TText extends string, TFind extends string, TReplace extends string> = IsStringLiteral$1<TText> extends true ? IsStringLiteral$1<TFind> extends true ? IsUnion$1<TFind> extends true ? UnionToTuple$1$1<TFind> extends readonly string[] ? Iterate$2$1<TText, UnionToTuple$1$1<TFind>, TReplace> : never : Process$J$1<TText, TFind, TReplace> : string : string;
13293
+ type Process$K$1<TText extends string, TFind extends string, TReplace extends string> = Replace$1<TText, TFind, TReplace> extends `${string}${TFind}${string}` ? Process$K$1<Replace$1<TText, TFind, TReplace>, TFind, TReplace> : Replace$1<TText, TFind, TReplace>;
13294
+ type Iterate$2$1<TText extends string, TFind extends readonly string[], TReplace extends string> = [] extends TFind ? TText : Iterate$2$1<Process$K$1<TText, First$1<TFind>, TReplace>, AfterFirst$1<TFind>, TReplace>;
13295
+ type Singular$1<TText extends string, TFind extends string, TReplace extends string> = IsStringLiteral$1<TText> extends true ? IsStringLiteral$1<TFind> extends true ? IsUnion$1<TFind> extends true ? UnionToTuple$1$1<TFind> extends readonly string[] ? Iterate$2$1<TText, UnionToTuple$1$1<TFind>, TReplace> : never : Process$K$1<TText, TFind, TReplace> : string : string;
13296
13296
  type Multiple$1<TText extends readonly string[], TFind extends string, TReplace extends string, TResult extends readonly string[] = []> = [] extends TText ? TResult : Multiple$1<AfterFirst$1<TText>, TFind, TReplace, [
13297
13297
  ...TResult,
13298
13298
  ReplaceAll$1<First$1<TText>, TFind, TReplace>
@@ -13316,7 +13316,7 @@ type Multiple$1<TText extends readonly string[], TFind extends string, TReplace
13316
13316
  */
13317
13317
  type ReplaceAll$1<TText extends string | readonly string[], TFind extends string, TReplace extends string> = TText extends readonly string[] ? IsLiteral$1<TText> extends true ? Multiple$1<TText, TFind, TReplace> : string[] : TText extends string ? Singular$1<TText, TFind, TReplace> : never;
13318
13318
 
13319
- type Process$I$1<TChars extends readonly string[], TRetain extends string> = RemoveMarked$1<{
13319
+ type Process$J$1<TChars extends readonly string[], TRetain extends string> = RemoveMarked$1<{
13320
13320
  [K in keyof TChars]: TChars[K] extends TRetain ? TChars[K] : Constant$1<"Marked">;
13321
13321
  }>;
13322
13322
  /**
@@ -13326,7 +13326,7 @@ type Process$I$1<TChars extends readonly string[], TRetain extends string> = Rem
13326
13326
  * of the characters in `TRetain` _retained_ while all
13327
13327
  * other characters are removed.
13328
13328
  */
13329
- type RetainChars$1<TContent extends string, TRetain extends string> = Or$1<[IsWideType$1<TContent>, IsWideType$1<TRetain>]> extends true ? string : Process$I$1<Chars$1<TContent>, TRetain> extends readonly string[] ? Join$1<Process$I$1<Chars$1<TContent>, TRetain>> : never;
13329
+ type RetainChars$1<TContent extends string, TRetain extends string> = Or$1<[IsWideType$1<TContent>, IsWideType$1<TRetain>]> extends true ? string : Process$J$1<Chars$1<TContent>, TRetain> extends readonly string[] ? Join$1<Process$J$1<Chars$1<TContent>, TRetain>> : never;
13330
13330
 
13331
13331
  /**
13332
13332
  * Provides the _left_ whitespace of a string
@@ -13340,7 +13340,7 @@ type RightWhitespace$1<S extends string> = string extends S ? string : Replace$1
13340
13340
  type Strip$1<TChars extends readonly string[], TStrip extends string> = {
13341
13341
  [K in keyof TChars]: TChars[K] extends TStrip ? Marked$3$1 : TChars[K];
13342
13342
  };
13343
- type Process$H$1<TChars extends readonly string[], TStrip extends string> = As$1<RemoveMarked$1<Strip$1<TChars, TStrip>>, readonly string[]>;
13343
+ type Process$I$1<TChars extends readonly string[], TStrip extends string> = As$1<RemoveMarked$1<Strip$1<TChars, TStrip>>, readonly string[]>;
13344
13344
  /**
13345
13345
  * **StripChars**`<TContent,TStrip>`
13346
13346
  *
@@ -13351,7 +13351,7 @@ type Process$H$1<TChars extends readonly string[], TStrip extends string> = As$1
13351
13351
  * of single characters or this will throw
13352
13352
  * `ErrorCondition<"invalid-strip-char">`
13353
13353
  */
13354
- type StripChars$1<TContent extends string, TStrip extends string> = Or$1<[IsWideType$1<TContent>, IsWideType$1<TStrip>]> extends true ? string : Chars$1<TContent> extends readonly string[] ? Concat$1<Process$H$1<Chars$1<TContent>, TStrip>> extends string ? Concat$1<Process$H$1<Chars$1<TContent>, TStrip>> : never : never;
13354
+ type StripChars$1<TContent extends string, TStrip extends string> = Or$1<[IsWideType$1<TContent>, IsWideType$1<TStrip>]> extends true ? string : Chars$1<TContent> extends readonly string[] ? Concat$1<Process$I$1<Chars$1<TContent>, TStrip>> extends string ? Concat$1<Process$I$1<Chars$1<TContent>, TStrip>> : never : never;
13355
13355
 
13356
13356
  /**
13357
13357
  * **ToNumber**`<T>`
@@ -13394,7 +13394,7 @@ type ToStringArray$1<T extends Tuple$1> = {
13394
13394
  [K in keyof T]: AsString$1<T[K]>;
13395
13395
  } : never;
13396
13396
 
13397
- type Process$G$1<S extends string> = string extends S ? string : S extends `${Whitespace$1}${infer Right}` ? Process$G$1<Right> : S extends `${infer Left}${Whitespace$1}` ? Process$G$1<Left> : S;
13397
+ type Process$H$1<S extends string> = string extends S ? string : S extends `${Whitespace$1}${infer Right}` ? Process$H$1<Right> : S extends `${infer Left}${Whitespace$1}` ? Process$H$1<Left> : S;
13398
13398
  /**
13399
13399
  * Trims off blank spaces, `\n` and `\t` characters from both sides of a _string literal_.
13400
13400
  * ```ts
@@ -13404,7 +13404,7 @@ type Process$G$1<S extends string> = string extends S ? string : S extends `${Wh
13404
13404
  * type T = Trim<string>;
13405
13405
  * ```
13406
13406
  */
13407
- type Trim$1<S extends string> = Process$G$1<S> extends string ? Process$G$1<S> : never;
13407
+ type Trim$1<S extends string> = Process$H$1<S> extends string ? Process$H$1<S> : never;
13408
13408
 
13409
13409
  /**
13410
13410
  * Trims off whitespace on left of string
@@ -13479,10 +13479,10 @@ type GetKeys$1$1<T extends AnyFunction$1> = FnProps$1<T> extends Dictionary$1 ?
13479
13479
  * Widens any _scalar_ type `T`.
13480
13480
  */
13481
13481
  type WidenScalar$1<T extends Scalar$1> = T extends string ? string : T extends number ? number : T extends boolean ? boolean : T extends symbol ? symbol : T extends null ? null : never;
13482
- type Process$D$1<T> = T extends Scalar$1 ? WidenScalar$1<T> : T extends unknown[] ? T extends (infer Type)[] ? IsUnion$1<Type> extends true ? WidenUnion$1<Type>[] : Type extends unknown[] ? WidenTuple$1<Type> : T : never : T extends AnyFunction$1 ? GetKeys$1$1<T>["length"] extends 0 ? RemoveFnProps$1<T> : RemoveFnProps$1<T> & ExpandRecursively$1<WidenObj$1<FnProps$1<T>, GetKeys$1$1<T>>> : T;
13483
- type WidenObj$1<T extends Dictionary$1, TKeys extends readonly (keyof T)[], TResults extends Dictionary$1 = EmptyObject$1> = [] extends TKeys ? TResults : WidenObj$1<T, AfterFirst$1<TKeys>, TResults & Record<First$1<TKeys>, T[First$1<TKeys>] extends TypedFunction$1 ? WidenFn$1<IsNarrowingFn$1<T[First$1<TKeys>]>, Parameters<T[First$1<TKeys>]>, ReturnType<T[First$1<TKeys>]>, ExpandDictionary$1<FnProps$1<T[First$1<TKeys>]>>> : IsLiteral$1<T[First$1<TKeys>]> extends true ? WidenLiteral$1<T[First$1<TKeys>]> : Process$D$1<T[First$1<TKeys>]>>>;
13482
+ type Process$E$1<T> = T extends Scalar$1 ? WidenScalar$1<T> : T extends unknown[] ? T extends (infer Type)[] ? IsUnion$1<Type> extends true ? WidenUnion$1<Type>[] : Type extends unknown[] ? WidenTuple$1<Type> : T : never : T extends AnyFunction$1 ? GetKeys$1$1<T>["length"] extends 0 ? RemoveFnProps$1<T> : RemoveFnProps$1<T> & ExpandRecursively$1<WidenObj$1<FnProps$1<T>, GetKeys$1$1<T>>> : T;
13483
+ type WidenObj$1<T extends Dictionary$1, TKeys extends readonly (keyof T)[], TResults extends Dictionary$1 = EmptyObject$1> = [] extends TKeys ? TResults : WidenObj$1<T, AfterFirst$1<TKeys>, TResults & Record<First$1<TKeys>, T[First$1<TKeys>] extends TypedFunction$1 ? WidenFn$1<IsNarrowingFn$1<T[First$1<TKeys>]>, Parameters<T[First$1<TKeys>]>, ReturnType<T[First$1<TKeys>]>, ExpandDictionary$1<FnProps$1<T[First$1<TKeys>]>>> : IsLiteral$1<T[First$1<TKeys>]> extends true ? WidenLiteral$1<T[First$1<TKeys>]> : Process$E$1<T[First$1<TKeys>]>>>;
13484
13484
  type WidenTuple$1<T extends readonly unknown[]> = {
13485
- [K in keyof T]: IsLiteral$1<T[K]> extends true ? WidenLiteral$1<T[K]> : Process$D$1<T[K]>;
13485
+ [K in keyof T]: IsLiteral$1<T[K]> extends true ? WidenLiteral$1<T[K]> : Process$E$1<T[K]>;
13486
13486
  };
13487
13487
  type WidenFnParams$1<T extends readonly unknown[]> = {
13488
13488
  [K in keyof T]: IsLiteral$1<T[K]> extends true ? WidenLiteral$1<T[K]> : IsLiteralUnion$1<T[K]> extends true ? WidenUnion$1<T[K]> : T[K];
@@ -13515,10 +13515,10 @@ type WidenContainer$1<T extends Container$1, TForce extends boolean = false> = [
13515
13515
  * **Note:** should you want the container values to be fully widened you
13516
13516
  * can set `TForce` to true.
13517
13517
  */
13518
- type Widen$1<T, TForce extends boolean = false> = [IsUnion$1<T>] extends [true] ? WidenUnion$1<T> : T extends Container$1 ? WidenContainer$1<T, TForce> : T extends Scalar$1 ? WidenScalar$1<T> : Process$D$1<T>;
13518
+ type Widen$1<T, TForce extends boolean = false> = [IsUnion$1<T>] extends [true] ? WidenUnion$1<T> : T extends Container$1 ? WidenContainer$1<T, TForce> : T extends Scalar$1 ? WidenScalar$1<T> : Process$E$1<T>;
13519
13519
 
13520
13520
  type Tighten$1<T extends string> = T extends ` ${infer Rest extends string}` ? T extends ` ${infer Double extends string}` ? Double : Rest : T;
13521
- type Process$C$1<T extends string, Result extends readonly unknown[] = []> = T extends `${infer Element},${infer Rest}` ? Process$C$1<Rest, [
13521
+ type Process$D$1<T extends string, Result extends readonly unknown[] = []> = T extends `${infer Element},${infer Rest}` ? Process$D$1<Rest, [
13522
13522
  ...Result,
13523
13523
  Tighten$1<Element> extends NumberLike$1 ? AsNumber$1<Tighten$1<Element>> : Tighten$1<Element>
13524
13524
  ]> : [
@@ -13549,7 +13549,7 @@ type ProcessUnionStr$1<T extends string, Result extends string | number = never>
13549
13549
  *
13550
13550
  * **Related:** `CsvToTupleStr`, `CsvToUnion`
13551
13551
  */
13552
- type CsvToTuple$1<T extends string> = Process$C$1<T>;
13552
+ type CsvToTuple$1<T extends string> = Process$D$1<T>;
13553
13553
  /**
13554
13554
  * **CsvToTupleStr**`<T>`
13555
13555
  *
@@ -13714,12 +13714,12 @@ type WideFlatten$1<T> = T extends (infer Type)[] ? Type extends unknown[] ? Type
13714
13714
  * Just returns `TList` "as is" if it's not a a Tuple or
13715
13715
  * Union type.
13716
13716
  */
13717
- type Process$w$1<TList, TLevel extends 1 | 2 | 3 = 1> = TList extends readonly unknown[] ? IsTuple$1<TList> extends true ? FlattenTuple$1<TList, TLevel> : WideFlatten$1<TList> : IsUnion$1<TList> extends true ? FlattenUnion$1<TList> : TList;
13717
+ type Process$x$1<TList, TLevel extends 1 | 2 | 3 = 1> = TList extends readonly unknown[] ? IsTuple$1<TList> extends true ? FlattenTuple$1<TList, TLevel> : WideFlatten$1<TList> : IsUnion$1<TList> extends true ? FlattenUnion$1<TList> : TList;
13718
13718
  /**
13719
13719
  * converts a wide array to a scalar and tuple
13720
13720
  * to a union type
13721
13721
  */
13722
- type ToScalar$1<TList, TLevel extends 1 | 2 | 3> = [IsTuple$1<Process$w$1<TList>>] extends [true] ? TupleToUnion$1<Process$w$1<TList, TLevel>> : Process$w$1<TList, TLevel> extends (infer Type)[] ? Type : never;
13722
+ type ToScalar$1<TList, TLevel extends 1 | 2 | 3> = [IsTuple$1<Process$x$1<TList>>] extends [true] ? TupleToUnion$1<Process$x$1<TList, TLevel>> : Process$x$1<TList, TLevel> extends (infer Type)[] ? Type : never;
13723
13723
  type IterateScalar$1<T extends readonly unknown[], TLevel extends 1 | 2 | 3> = TupleToUnion$1<{
13724
13724
  [K in keyof T]: T[K] extends unknown[] ? ToScalar$1<T[K], TLevel> : T[K];
13725
13725
  }>;
@@ -13735,15 +13735,15 @@ type IterateScalar$1<T extends readonly unknown[], TLevel extends 1 | 2 | 3> = T
13735
13735
  * if you set `ToScalar` to `true` then it will flatten right out of being an array
13736
13736
  * into a union type
13737
13737
  */
13738
- type Flatten$1<TList, TLevel extends 1 | 2 | 3 = 1, ToScalar extends boolean = false> = [ToScalar] extends [false] ? Process$w$1<TList, TLevel> : [
13739
- IsUnion$1<Process$w$1<TList, TLevel>>
13740
- ] extends [true] ? IterateScalar$1<UnionToTuple$1$1<Process$w$1<TList, TLevel>>, TLevel> : [IsTuple$1<Process$w$1<TList, TLevel>>] extends [true] ? TupleToUnion$1<Process$w$1<TList, TLevel>> : Process$w$1<TList, TLevel> extends (infer Type)[] ? Type : never;
13738
+ type Flatten$1<TList, TLevel extends 1 | 2 | 3 = 1, ToScalar extends boolean = false> = [ToScalar] extends [false] ? Process$x$1<TList, TLevel> : [
13739
+ IsUnion$1<Process$x$1<TList, TLevel>>
13740
+ ] extends [true] ? IterateScalar$1<UnionToTuple$1$1<Process$x$1<TList, TLevel>>, TLevel> : [IsTuple$1<Process$x$1<TList, TLevel>>] extends [true] ? TupleToUnion$1<Process$x$1<TList, TLevel>> : Process$x$1<TList, TLevel> extends (infer Type)[] ? Type : never;
13741
13741
 
13742
13742
  /**
13743
13743
  * extract props from functions
13744
13744
  */
13745
13745
  type F$2<T> = T extends TypedFunction$1 ? FnProps$1<T> : T;
13746
- type Process$v$1<TList extends readonly unknown[], TKey extends string> = RemoveNever$1<{
13746
+ type Process$w$1<TList extends readonly unknown[], TKey extends string> = RemoveNever$1<{
13747
13747
  [K in keyof TList]: [TKey] extends [keyof F$2<TList[K]>] ? [IndexOf$1<F$2<TList[K]>, TKey>] extends [undefined] ? never : IndexOf$1<F$2<TList[K]>, TKey> : [IsValidDotPath$1<F$2<TList[K]>, TKey>] extends [true] ? Mutable$1<Get$1$1<F$2<TList[K]>, TKey, never>> : never;
13748
13748
  }>;
13749
13749
  /**
@@ -13765,7 +13765,7 @@ type Process$v$1<TList extends readonly unknown[], TKey extends string> = Remove
13765
13765
  * ], "name">
13766
13766
  * ```
13767
13767
  */
13768
- type GetEach$1<TList extends readonly unknown[], TKey extends string | null> = TKey extends null ? TList : TKey extends "" ? TList : IsReadonlyArray$1<TList> extends true ? Readonly<Process$v$1<[...TList], Exclude<TKey, null>>> : Process$v$1<TList, Exclude<TKey, null>>;
13768
+ type GetEach$1<TList extends readonly unknown[], TKey extends string | null> = TKey extends null ? TList : TKey extends "" ? TList : IsReadonlyArray$1<TList> extends true ? Readonly<Process$w$1<[...TList], Exclude<TKey, null>>> : Process$w$1<TList, Exclude<TKey, null>>;
13769
13769
 
13770
13770
  type Override$1<TValue, TOverride> = TOverride extends Constant$1<"no-override"> ? TValue : TValue extends ErrorCondition$1<"invalid-index"> ? TOverride : TValue;
13771
13771
  type NegativeIndex$1<TValue extends readonly unknown[], TIdx extends number> = Decrement$1<Abs$1<TIdx>> extends number ? If$1<IsValidIndex$1<TValue, Decrement$1<Abs$1<TIdx>>>, TValue[Decrement$1<Abs$1<TIdx>>], Throw$1<"invalid-index", `Use of a negative index [${AsString$1<TIdx>}] was unsuccessful in matching a valid index`, "IndexOf", {
@@ -13790,7 +13790,7 @@ type HandleObj$1<TValue extends Dictionary$1, TIdx extends PropertyKey> = TIdx e
13790
13790
  key: TIdx;
13791
13791
  library: "inferred-types/constants";
13792
13792
  }>;
13793
- type Process$u$1<TValue, TIdx extends PropertyKey | null> = If$1<IsNull$1<TIdx>, TValue, TValue extends readonly unknown[] ? If$1<IsValidIndex$1<TValue, AsPropertyKey$1<TIdx>>, HandleArr$1<TValue, AsPropertyKey$1<TIdx>>, Throw$1<"invalid-index", `Call to IndexOf<DescribeType<TValue>,${AsString$1<TIdx>}> is not allowed as an tuple based container must receive either null or numeric index value.`, "IndexOf", {
13793
+ type Process$v$1<TValue, TIdx extends PropertyKey | null> = If$1<IsNull$1<TIdx>, TValue, TValue extends readonly unknown[] ? If$1<IsValidIndex$1<TValue, AsPropertyKey$1<TIdx>>, HandleArr$1<TValue, AsPropertyKey$1<TIdx>>, Throw$1<"invalid-index", `Call to IndexOf<DescribeType<TValue>,${AsString$1<TIdx>}> is not allowed as an tuple based container must receive either null or numeric index value.`, "IndexOf", {
13794
13794
  library: "inferred-types/constants";
13795
13795
  container: TValue;
13796
13796
  key: TIdx;
@@ -13819,7 +13819,7 @@ type Process$u$1<TValue, TIdx extends PropertyKey | null> = If$1<IsNull$1<TIdx>,
13819
13819
  * **Errors:** produces an `ErrorCondition<"invalid-index">` when an a bad index value
13820
13820
  * is passed in for the given container
13821
13821
  */
13822
- type IndexOf$1<TValue, TIdx extends PropertyKey | null, TOverride = Constant$1<"no-override">> = TIdx extends null ? TValue : Override$1<Process$u$1<TValue, TIdx>, TOverride>;
13822
+ type IndexOf$1<TValue, TIdx extends PropertyKey | null, TOverride = Constant$1<"no-override">> = TIdx extends null ? TValue : Override$1<Process$v$1<TValue, TIdx>, TOverride>;
13823
13823
 
13824
13824
  /**
13825
13825
  * **Last**`<TList, [TEmpty]>`
@@ -13881,14 +13881,14 @@ interface FnMeta$1<TFn extends AnyFunction$1 = AnyFunction$1, TArgs extends read
13881
13881
  isNarrowingFn: IsNarrowingFn$1<TFn>;
13882
13882
  }
13883
13883
 
13884
- type Process$s$1<T extends AnyFunction$1> = IsEqual$1<T, Function> extends true ? EmptyObject$1 : keyof T extends ObjectKey$1 ? Pick<T, keyof T> : never;
13884
+ type Process$t$1<T extends AnyFunction$1> = IsEqual$1<T, Function> extends true ? EmptyObject$1 : keyof T extends ObjectKey$1 ? Pick<T, keyof T> : never;
13885
13885
  /**
13886
13886
  * **FnProps**`<T>`
13887
13887
  *
13888
13888
  * Return a dictionary of key/value pairs from a function. If no key/value
13889
13889
  * pairs are assigned to the function base then an empty object is returned.
13890
13890
  */
13891
- type FnProps$1<T extends AnyFunction$1> = Process$s$1<T>;
13891
+ type FnProps$1<T extends AnyFunction$1> = Process$t$1<T>;
13892
13892
 
13893
13893
  type FnDefn$1 = [fn: AnyFunction$1] | [fn: AnyFunction$1, desc: string] | [fn: AnyFunction$1, props: Record<ObjectKey$1, unknown>];
13894
13894
  /**
@@ -14807,7 +14807,7 @@ interface VueRef$1<T = any> {
14807
14807
  value: T;
14808
14808
  }
14809
14809
 
14810
- type Process$r$1<TValues extends readonly (boolean | LogicFunction$1)[], _TParams extends readonly unknown[] = []> = {
14810
+ type Process$s$1<TValues extends readonly (boolean | LogicFunction$1)[], _TParams extends readonly unknown[] = []> = {
14811
14811
  [K in keyof TValues]: TValues[K] extends ((...args: any[]) => boolean) ? ReturnType<TValues[K]> : TValues[K];
14812
14812
  };
14813
14813
  /**
@@ -14820,7 +14820,7 @@ type Process$r$1<TValues extends readonly (boolean | LogicFunction$1)[], _TParam
14820
14820
  *
14821
14821
  * **Related**: `ReturnTypes` and `TruthyReturns`
14822
14822
  */
14823
- type LogicalReturns$1<TValues extends readonly (boolean | LogicFunction$1)[], _TParams extends readonly unknown[] = []> = Process$r$1<TValues, _TParams> extends readonly boolean[] ? Process$r$1<TValues, _TParams> : never;
14823
+ type LogicalReturns$1<TValues extends readonly (boolean | LogicFunction$1)[], _TParams extends readonly unknown[] = []> = Process$s$1<TValues, _TParams> extends readonly boolean[] ? Process$s$1<TValues, _TParams> : never;
14824
14824
 
14825
14825
  type Reduce$1<T extends readonly ([string, number])[], TMax extends number = 0, TVal extends string = ""> = [] extends T ? TVal : Reduce$1<AfterFirst$1<T>, First$1<T> extends [string, infer Len extends number] ? If$1<IsGreaterThan$1<Len, TMax>, Len, TMax> : TMax, First$1<T> extends [infer Val extends string, infer Len extends number] ? If$1<IsGreaterThan$1<Len, TMax>, Val, TVal> : TVal>;
14826
14826
  /**
@@ -14840,7 +14840,7 @@ type Recurse$1<TList extends Tuple$1, TResults extends Tuple$1 = []> = [] extend
14840
14840
  type Convert$1$1<TList extends Tuple$1> = Length$1<TList> extends 0 ? number[] : Recurse$1<{
14841
14841
  [K in keyof TList]: K;
14842
14842
  }>;
14843
- type Process$q$1<TList extends Tuple$1> = If$1<IsReadonlyArray$1<TList>, TList["length"] extends 0 ? number[] : Readonly<Convert$1$1<TList>>, Convert$1$1<TList>>;
14843
+ type Process$r$1<TList extends Tuple$1> = If$1<IsReadonlyArray$1<TList>, TList["length"] extends 0 ? number[] : Readonly<Convert$1$1<TList>>, Convert$1$1<TList>>;
14844
14844
  /**
14845
14845
  * **NumericKeys**<`TList`>
14846
14846
  *
@@ -14855,7 +14855,7 @@ type Process$q$1<TList extends Tuple$1> = If$1<IsReadonlyArray$1<TList>, TList["
14855
14855
  *
14856
14856
  * **Related:** `Keys`
14857
14857
  */
14858
- type NumericKeys$1<TList extends Tuple$1> = Process$q$1<TList> extends readonly number[] ? Process$q$1<TList> : never;
14858
+ type NumericKeys$1<TList extends Tuple$1> = Process$r$1<TList> extends readonly number[] ? Process$r$1<TList> : never;
14859
14859
 
14860
14860
  type _Get$1<T, K, Acc = never> = K extends `${infer A}.${infer B}` ? A extends keyof T ? _Get$1<T[A], B, _Get$1<T[A], B>> : Acc : K extends keyof T ? _Get$1<T[K], K, T[K]> : Acc;
14861
14861
  /**
@@ -14889,7 +14889,7 @@ type _Pop$1<TVal extends Tuple$1> = TVal extends [...(infer Rest), unknown] ? Re
14889
14889
  */
14890
14890
  type Pop$2<TList extends Tuple$1 | string> = TList extends string ? IsWideType$1<TList> extends true ? string : IsStringLiteral$1<TList> extends true ? TList extends string ? TList extends "" ? "" : Chars$1<TList> extends readonly string[] ? Concat$1<_Pop$1<Chars$1<TList>>> : never : never : string : _Pop$1<Exclude<TList, string>>;
14891
14891
 
14892
- type Process$o$1<TList extends readonly unknown[], TValue> = [
14892
+ type Process$p$1<TList extends readonly unknown[], TValue> = [
14893
14893
  ...TList,
14894
14894
  TValue
14895
14895
  ];
@@ -14900,13 +14900,13 @@ type Process$o$1<TList extends readonly unknown[], TValue> = [
14900
14900
  *
14901
14901
  * - If you want to make the push conditional you can add `TCondition`
14902
14902
  */
14903
- type Push$2<TList extends readonly unknown[], TVal, TCondition = true> = [TCondition] extends [true] ? As$1<Process$o$1<TList, TVal>, readonly unknown[]> : TList;
14903
+ type Push$2<TList extends readonly unknown[], TVal, TCondition = true> = [TCondition] extends [true] ? As$1<Process$p$1<TList, TVal>, readonly unknown[]> : TList;
14904
14904
 
14905
14905
  /**
14906
14906
  * Iterates over each element of the Tuple
14907
14907
  */
14908
14908
  type SingleFilter$4<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$4<Rest, TFilter, TOp, [...Result, Head]> : SingleFilter$4<Rest, TFilter, TOp, Result> : Result;
14909
- type Process$n$1<TList extends readonly unknown[], TComparator, TOp extends ComparatorOperation$1> = TList extends unknown[] ? SingleFilter$4<TList, TComparator, TOp> : TList extends readonly unknown[] ? Readonly<SingleFilter$4<[...TList], TComparator, TOp>> : never;
14909
+ type Process$o$1<TList extends readonly unknown[], TComparator, TOp extends ComparatorOperation$1> = TList extends unknown[] ? SingleFilter$4<TList, TComparator, TOp> : TList extends readonly unknown[] ? Readonly<SingleFilter$4<[...TList], TComparator, TOp>> : never;
14910
14910
  type PrepList$1<T extends readonly unknown[], O extends ComparatorOperation$1> = Or$1<[
14911
14911
  IsEqual$1<O, "contains">,
14912
14912
  IsEqual$1<O, "startsWith">,
@@ -14925,9 +14925,9 @@ type PrepList$1<T extends readonly unknown[], O extends ComparatorOperation$1> =
14925
14925
  *
14926
14926
  * **Related:** `Filter`
14927
14927
  */
14928
- type Retain$1<TList extends readonly unknown[], TComparator, TOp extends ComparatorOperation$1 = "extends"> = PrepList$1<TList, TOp> extends readonly unknown[] ? [TComparator] extends [unknown[]] ? Process$n$1<PrepList$1<TList, TOp>, TupleToUnion$1<TComparator>, TOp> : Process$n$1<PrepList$1<TList, TOp>, TComparator, TOp> : never;
14928
+ type Retain$1<TList extends readonly unknown[], TComparator, TOp extends ComparatorOperation$1 = "extends"> = PrepList$1<TList, TOp> extends readonly unknown[] ? [TComparator] extends [unknown[]] ? Process$o$1<PrepList$1<TList, TOp>, TupleToUnion$1<TComparator>, TOp> : Process$o$1<PrepList$1<TList, TOp>, TComparator, TOp> : never;
14929
14929
 
14930
- type Process$m$1<T extends readonly unknown[]> = RemoveMarked$1<{
14930
+ type Process$n$1<T extends readonly unknown[]> = RemoveMarked$1<{
14931
14931
  [K in keyof T]: If$1<IsLiteral$1<T[K]>, T[K], Constant$1<"Marked">>;
14932
14932
  }>;
14933
14933
  /**
@@ -14940,7 +14940,7 @@ type Process$m$1<T extends readonly unknown[]> = RemoveMarked$1<{
14940
14940
  *
14941
14941
  * **Related:** `Retain`, `FilterLiterals`, `RetainWideTypes`
14942
14942
  */
14943
- type RetainLiterals$1<T extends readonly unknown[]> = Process$m$1<T> extends readonly unknown[] ? Process$m$1<T> : never;
14943
+ type RetainLiterals$1<T extends readonly unknown[]> = Process$n$1<T> extends readonly unknown[] ? Process$n$1<T> : never;
14944
14944
 
14945
14945
  /**
14946
14946
  * **Second**`<T, [ELSE]>`
@@ -14981,8 +14981,8 @@ type RemoveStart$1<TList extends readonly unknown[], TStart extends number> = TS
14981
14981
  ...(infer REST)
14982
14982
  ] ? REST : Throw$1<"invalid-start-index">;
14983
14983
  type TruncateAtLen$1<TList extends readonly unknown[], TLen extends number> = IsNegativeNumber$1<TLen> extends true ? If$1<IsGreaterThan$1<Abs$1<TLen>, TList["length"]>, never, TakeFirst$1<TList, Add$1<TList["length"], TLen>>> : If$1<IsGreaterThanOrEqual$1<TLen, TList["length"]>, TList, TakeFirst$1<TList, TLen>>;
14984
- type Process$k$1<TList extends readonly unknown[], TStart extends number, TLen extends number | undefined> = TList extends readonly unknown[] ? RemoveStart$1<TList, TStart> extends readonly unknown[] ? If$1<IsNumericLiteral$1<TLen>, TruncateAtLen$1<RemoveStart$1<TList, TStart>, As$1<TLen, number>>, RemoveStart$1<TList, TStart>> : RemoveStart$1<TList, TStart> : never;
14985
- type PreProcess$6<TList extends readonly unknown[], TStart extends number, TLen extends number | undefined = undefined> = TList extends string ? Chars$1<TList> extends readonly string[] ? Concat$1<As$1<Process$k$1<Chars$1<TList>, TStart, TLen>, readonly string[]>> : never : TList extends readonly unknown[] ? Process$k$1<TList, TStart, TLen> : never;
14984
+ type Process$l$1<TList extends readonly unknown[], TStart extends number, TLen extends number | undefined> = TList extends readonly unknown[] ? RemoveStart$1<TList, TStart> extends readonly unknown[] ? If$1<IsNumericLiteral$1<TLen>, TruncateAtLen$1<RemoveStart$1<TList, TStart>, As$1<TLen, number>>, RemoveStart$1<TList, TStart>> : RemoveStart$1<TList, TStart> : never;
14985
+ type PreProcess$6<TList extends readonly unknown[], TStart extends number, TLen extends number | undefined = undefined> = TList extends string ? Chars$1<TList> extends readonly string[] ? Concat$1<As$1<Process$l$1<Chars$1<TList>, TStart, TLen>, readonly string[]>> : never : TList extends readonly unknown[] ? Process$l$1<TList, TStart, TLen> : never;
14986
14986
  /**
14987
14987
  * **Slice**`<TList, TStart, TLen>`
14988
14988
  *
@@ -14996,7 +14996,7 @@ type PreProcess$6<TList extends readonly unknown[], TStart extends number, TLen
14996
14996
  */
14997
14997
  type Slice$1<TList extends readonly unknown[] | string, TStart extends number, TLen extends number | undefined = undefined> = TList extends string ? Concat$1<As$1<PreProcess$6<Chars$1<TList>, TStart, TLen>, readonly string[]>> : TList extends readonly unknown[] ? PreProcess$6<TList, TStart, TLen> extends readonly unknown[] ? PreProcess$6<TList, TStart, TLen> : never : never;
14998
14998
 
14999
- type Process$j$1<TContent extends readonly unknown[], TLen extends number, TIdx extends number = 0, TResult extends readonly unknown[] = []> = [] extends TContent ? TResult : If$1<IsGreaterThanOrEqual$1<TIdx, TLen>, TResult, Process$j$1<AfterFirst$1<TContent>, TLen, Increment$1<TIdx>, [
14999
+ type Process$k$1<TContent extends readonly unknown[], TLen extends number, TIdx extends number = 0, TResult extends readonly unknown[] = []> = [] extends TContent ? TResult : If$1<IsGreaterThanOrEqual$1<TIdx, TLen>, TResult, Process$k$1<AfterFirst$1<TContent>, TLen, Increment$1<TIdx>, [
15000
15000
  ...TResult,
15001
15001
  First$1<TContent>
15002
15002
  ]>>;
@@ -15013,7 +15013,7 @@ type Process$j$1<TContent extends readonly unknown[], TLen extends number, TIdx
15013
15013
  * - if you want a precise length, then set `THandle` to "throw" and
15014
15014
  * an error will be thrown.
15015
15015
  */
15016
- type TakeFirst$1<TContent extends readonly unknown[], TLen extends number, THandle extends "ignore" | "throw" = "ignore"> = If$1<IsGreaterThan$1<TLen, TContent["length"]>, If$1<THandle extends "ignore" ? true : false, TContent, Throw$1<"invalid-length", `TakeFirst<TContent,TLen> was called where the length of TLen(${TLen}) was greater than the length of the content (${TContent["length"]})!`>>, If$1<IsEqual$1<TLen, TContent["length"]>, TContent, Process$j$1<TContent, TLen>>>;
15016
+ type TakeFirst$1<TContent extends readonly unknown[], TLen extends number, THandle extends "ignore" | "throw" = "ignore"> = If$1<IsGreaterThan$1<TLen, TContent["length"]>, If$1<THandle extends "ignore" ? true : false, TContent, Throw$1<"invalid-length", `TakeFirst<TContent,TLen> was called where the length of TLen(${TLen}) was greater than the length of the content (${TContent["length"]})!`>>, If$1<IsEqual$1<TLen, TContent["length"]>, TContent, Process$k$1<TContent, TLen>>>;
15017
15017
 
15018
15018
  type _Keys$2$1<T extends object> = UnionToTuple$1$1<keyof RemoveIndexKeys$1<T>> extends readonly ObjectKey$1[] ? UnionToTuple$1$1<keyof RemoveIndexKeys$1<T>> : never;
15019
15019
  type ProcessObj$1$1<T extends Container$1, TKeys extends readonly PropertyKey[], TResults extends Dictionary$1 = EmptyObject$1> = [] extends TKeys ? TResults : First$1<TKeys> extends keyof T ? IfNever$1<T[First$1<TKeys>], ProcessObj$1$1<T, AfterFirst$1<TKeys>, TResults>, ProcessObj$1$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;
@@ -15029,7 +15029,7 @@ type _Keys$9<T extends object> = UnionToTuple$1$1<keyof RemoveIndexKeys$1<T>>;
15029
15029
  type GetKeys$3<T extends object> = IsVueRef$1<T> extends true ? ["value"] : _Keys$9<T> extends [symbol] ? ObjectKey$1[] : _Keys$9<T> extends [] ? UnionToTuple$1$1<keyof T> extends [ObjectKey$1] ? (keyof T)[] : ObjectKey$1[] : _Keys$9<T>;
15030
15030
  type ProcessObj$4<TContainer extends object> = GetKeys$3<TContainer>;
15031
15031
  type ProcessTuple$6<TContainer extends readonly unknown[]> = NumericKeys$1<TContainer> extends readonly number[] ? NumericKeys$1<TContainer> : never;
15032
- type Process$g$1<TContainer extends AnyObject$1> = [IsObjectLiteral$1<RemoveIndexKeys$1<TContainer>>] extends [true] ? ProcessObj$4<RemoveIndexKeys$1<TContainer>> extends readonly (keyof TContainer & ObjectKey$1)[] ? As$1<ProcessObj$4<RemoveIndexKeys$1<TContainer>>, readonly ObjectKey$1[]> : never : ObjectKey$1[];
15032
+ type Process$h$1<TContainer extends AnyObject$1> = [IsObjectLiteral$1<RemoveIndexKeys$1<TContainer>>] extends [true] ? ProcessObj$4<RemoveIndexKeys$1<TContainer>> extends readonly (keyof TContainer & ObjectKey$1)[] ? As$1<ProcessObj$4<RemoveIndexKeys$1<TContainer>>, readonly ObjectKey$1[]> : never : ObjectKey$1[];
15033
15033
  /**
15034
15034
  * **Keys**`<TContainer>`
15035
15035
  *
@@ -15046,7 +15046,7 @@ type Process$g$1<TContainer extends AnyObject$1> = [IsObjectLiteral$1<RemoveInde
15046
15046
  *
15047
15047
  * **Related:** `ValidKey`, `PublicKeys`
15048
15048
  */
15049
- type Keys$1<TContainer extends Tuple$1 | AnyObject$1> = TContainer extends Tuple$1 ? ProcessTuple$6<TContainer> : TContainer extends AnyObject$1 ? Process$g$1<TContainer> extends readonly ObjectKey$1[] ? Process$g$1<TContainer> : never : never;
15049
+ type Keys$1<TContainer extends Tuple$1 | AnyObject$1> = TContainer extends Tuple$1 ? ProcessTuple$6<TContainer> : TContainer extends AnyObject$1 ? Process$h$1<TContainer> extends readonly ObjectKey$1[] ? Process$h$1<TContainer> : never : never;
15050
15050
 
15051
15051
  type ProcessTupleKeys$1<TObj extends AnyObject$1, TKeys extends readonly ObjectKey$1[]> = ExpandDictionary$1<WithoutKeys$1<TObj, TKeys> & {
15052
15052
  [K in keyof WithKeys$1<TObj, TKeys>]?: K extends keyof TObj ? TObj[K] : never;
@@ -15124,7 +15124,7 @@ interface ConstrainedObjectIdentity$1<TConstraint extends AnyObject$1> {
15124
15124
  asCallback: ConstrainedObjectCallback$1<TConstraint>;
15125
15125
  }
15126
15126
 
15127
- type Process$e$1<TKeys extends readonly string[], TValue, TObj extends Dictionary$1 = EmptyObject$1> = [] extends TKeys ? TObj : Process$e$1<AfterFirst$1<TKeys>, TValue, TObj & Record<First$1<TKeys>, TValue>>;
15127
+ type Process$f$1<TKeys extends readonly string[], TValue, TObj extends Dictionary$1 = EmptyObject$1> = [] extends TKeys ? TObj : Process$f$1<AfterFirst$1<TKeys>, TValue, TObj & Record<First$1<TKeys>, TValue>>;
15128
15128
  /**
15129
15129
  * **CreateKV**`<TKeys,[TValue]>`
15130
15130
  *
@@ -15132,7 +15132,7 @@ type Process$e$1<TKeys extends readonly string[], TValue, TObj extends Dictionar
15132
15132
  * as `TKeys` and with all properties set to the value
15133
15133
  * of `TValue` (which defaults to `unknown`)
15134
15134
  */
15135
- type CreateKV$1<TKeys extends readonly string[], TValue = unknown> = ExpandRecursively$1<Process$e$1<TKeys, TValue>>;
15135
+ type CreateKV$1<TKeys extends readonly string[], TValue = unknown> = ExpandRecursively$1<Process$f$1<TKeys, TValue>>;
15136
15136
 
15137
15137
  /**
15138
15138
  * the _optional_ variants of the `SimpleScalarToken` type
@@ -15732,7 +15732,7 @@ type SKeys$1<T extends AnyObject$1> = IsVueRef$1<T> extends true ? ["value"] : _
15732
15732
  */
15733
15733
  type TakeProp$1<TTest, TProp extends PropertyKey, TElse = undefined> = TProp extends keyof TTest ? TTest[TProp] : TElse;
15734
15734
 
15735
- type Process$4$1<TKeys extends readonly ObjectKey$1[], TObj extends Record<ObjectKey$1, unknown>, TResult extends readonly unknown[] = []> = [] extends TKeys ? TResult : Process$4$1<AfterFirst$1<TKeys>, TObj, [
15735
+ type Process$5$1<TKeys extends readonly ObjectKey$1[], TObj extends Record<ObjectKey$1, unknown>, TResult extends readonly unknown[] = []> = [] extends TKeys ? TResult : Process$5$1<AfterFirst$1<TKeys>, TObj, [
15736
15736
  ...TResult,
15737
15737
  First$1<TKeys> extends keyof TObj ? TObj[First$1<TKeys>] : never
15738
15738
  ]>;
@@ -15744,7 +15744,7 @@ type Process$4$1<TKeys extends readonly ObjectKey$1[], TObj extends Record<Objec
15744
15744
  * - for **tuples** this is just a _proxy_ of the type
15745
15745
  * - for _wide_ types like `string[]`
15746
15746
  */
15747
- type Values$1<T extends Container$1> = T extends Tuple$1 ? T : T extends Dictionary$1 ? Process$4$1<Keys$1<T> extends readonly ObjectKey$1[] ? Keys$1<T> : never, T> : T extends TypedFunction$1 ? [T] : [];
15747
+ type Values$1<T extends Container$1> = T extends Tuple$1 ? T : T extends Dictionary$1 ? Process$5$1<Keys$1<T> extends readonly ObjectKey$1[] ? Keys$1<T> : never, T> : T extends TypedFunction$1 ? [T] : [];
15748
15748
 
15749
15749
  type MakeIntoUnion$1<K extends PropertyKey | readonly PropertyKey[]> = K extends readonly PropertyKey[] ? TupleToUnion$1<K> : K;
15750
15750
  type MakeNumericIndex$1<T> = T;
@@ -15767,7 +15767,7 @@ type MakeNumericIndex$1<T> = T;
15767
15767
  */
15768
15768
  type WithKeys$1<T extends AnyObject$1 | Tuple$1, K extends PropertyKey | readonly PropertyKey[]> = ExpandRecursively$1<UnionToIntersection$3<MakeIntoUnion$1<K> extends keyof T ? T extends Tuple$1 ? MakeNumericIndex$1<Pick<T, MakeIntoUnion$1<K>>> : Pick<T, MakeIntoUnion$1<K>> : never>>;
15769
15769
 
15770
- type Process$3$1<TObj extends Dictionary$1, TKeys extends ObjectKey$1> = [] extends TKeys ? TObj : Omit<TObj, TKeys>;
15770
+ type Process$4$1<TObj extends Dictionary$1, TKeys extends ObjectKey$1> = [] extends TKeys ? TObj : Omit<TObj, TKeys>;
15771
15771
  /**
15772
15772
  * **WithoutKeys**`<TObj, TKeys>`
15773
15773
  *
@@ -15775,7 +15775,7 @@ type Process$3$1<TObj extends Dictionary$1, TKeys extends ObjectKey$1> = [] exte
15775
15775
  * functionally equivalent to the `Omit<T,U>` built-in but rather than
15776
15776
  * taking a union type it takes an array of keys.
15777
15777
  */
15778
- type WithoutKeys$1<TObj extends Dictionary$1, TKeys extends ObjectKey$1 | readonly ObjectKey$1[]> = TKeys extends readonly ObjectKey$1[] ? Process$3$1<TObj, TupleToUnion$1<TKeys>> : ExpandDictionary$1<Process$3$1<TObj, TKeys extends readonly ObjectKey$1[] ? TupleToUnion$1<TKeys> : TKeys>>;
15778
+ type WithoutKeys$1<TObj extends Dictionary$1, TKeys extends ObjectKey$1 | readonly ObjectKey$1[]> = TKeys extends readonly ObjectKey$1[] ? Process$4$1<TObj, TupleToUnion$1<TKeys>> : ExpandDictionary$1<Process$4$1<TObj, TKeys extends readonly ObjectKey$1[] ? TupleToUnion$1<TKeys> : TKeys>>;
15779
15779
 
15780
15780
  /**
15781
15781
  * **WithoutValue**
@@ -15794,7 +15794,7 @@ type WithoutKeys$1<TObj extends Dictionary$1, TKeys extends ObjectKey$1 | readon
15794
15794
  type WithoutValue$1<TObj extends AnyObject$1, TValue extends Narrowable$1> = ExpandRecursively$1<Pick<TObj, KeysWithoutValue$1<TObj, TValue>>>;
15795
15795
 
15796
15796
  type Marked$1$1 = typeof MARKED$1;
15797
- type Process$2$1<TObj extends Dictionary$1, TValue, TOp extends "equals" | "extends"> = RemoveMarked$1<{
15797
+ type Process$3$1<TObj extends Dictionary$1, TValue, TOp extends "equals" | "extends"> = RemoveMarked$1<{
15798
15798
  [K in keyof TObj]: If$1<Compare$1$1<TObj[K], TOp, TValue>, TObj[K], Marked$1$1>;
15799
15799
  }>;
15800
15800
  /**
@@ -15810,7 +15810,7 @@ type Process$2$1<TObj extends Dictionary$1, TValue, TOp extends "equals" | "exte
15810
15810
  *
15811
15811
  * **Related:** `WithoutValue`, `WithKeys`, `WithoutKeys`
15812
15812
  */
15813
- type WithValue$1<TObj extends Dictionary$1, TValue, TOp extends "equals" | "extends" = "extends"> = ExpandRecursively$1<Process$2$1<TObj, TValue, TOp>>;
15813
+ type WithValue$1<TObj extends Dictionary$1, TValue, TOp extends "equals" | "extends" = "extends"> = ExpandRecursively$1<Process$3$1<TObj, TValue, TOp>>;
15814
15814
 
15815
15815
  /** Converts a single KeyValue into a one-key object */
15816
15816
  type KeyValueToObj$1<KV extends {
@@ -15844,7 +15844,7 @@ interface KeyValue$1<K = ObjectKey$1, V = any> {
15844
15844
  value: V;
15845
15845
  }
15846
15846
 
15847
- type Process$1$1<TObj extends AnyObject$1, TKeys extends readonly (ObjectKey$1 & keyof TObj)[], TKv extends readonly KeyValue$1[] = []> = [] extends TKeys ? TKv : Process$1$1<TObj, AfterFirst$1<TKeys>, [
15847
+ type Process$2$1<TObj extends AnyObject$1, TKeys extends readonly (ObjectKey$1 & keyof TObj)[], TKv extends readonly KeyValue$1[] = []> = [] extends TKeys ? TKv : Process$2$1<TObj, AfterFirst$1<TKeys>, [
15848
15848
  ...TKv,
15849
15849
  {
15850
15850
  key: First$1<TKeys>;
@@ -15873,7 +15873,7 @@ type Process$1$1<TObj extends AnyObject$1, TKeys extends readonly (ObjectKey$1 &
15873
15873
  *
15874
15874
  * **Related:** `KeyValue`, `FromKv`
15875
15875
  */
15876
- 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$1$1<TObj, TKeys> : Array<{
15876
+ 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
15877
  [K in keyof TObj]: {
15878
15878
  key: K;
15879
15879
  value: TObj[K];
@@ -16000,7 +16000,7 @@ type Intersection$1<A extends readonly unknown[], B extends readonly unknown[],
16000
16000
 
16001
16001
  type Get$2<TValue, TDeref extends PropertyKey | never> = IfNever$1<TDeref, TValue, // just proxy value back
16002
16002
  TDeref extends keyof TValue ? TValue[TDeref] : TValue extends Container$1 ? never : TValue>;
16003
- type Process$1A<TValues extends readonly unknown[], TDeref extends string | number | never, TResults extends readonly unknown[] = []> = [] extends TValues ? TResults : Process$1A<AfterFirst$1<TValues>, TDeref, Push$2<TResults, First$1<TResults>, IsScalar$1<First$1<TValues>> extends true ? Not$1<Contains$1<TResults, First$1<TValues>>> : Not$1<Contains$1<As$1<IsNever$1<TDeref> extends true ? TResults : GetEach$1<TResults, AsString$1<TDeref>>, string | number | readonly unknown[]>, Get$2<First$1<TValues>, TDeref>>>>>;
16003
+ type Process$1$1<TValues extends readonly unknown[], TDeref extends string | number | never, TResults extends readonly unknown[] = []> = [] extends TValues ? TResults : Process$1$1<AfterFirst$1<TValues>, TDeref, Push$2<TResults, First$1<TResults>, IsScalar$1<First$1<TValues>> extends true ? Not$1<Contains$1<TResults, First$1<TValues>>> : Not$1<Contains$1<As$1<IsNever$1<TDeref> extends true ? TResults : GetEach$1<TResults, AsString$1<TDeref>>, string | number | readonly unknown[]>, Get$2<First$1<TValues>, TDeref>>>>>;
16004
16004
  /**
16005
16005
  * **Unique**`<TList, [TDeref]>`
16006
16006
  *
@@ -16017,7 +16017,7 @@ type Process$1A<TValues extends readonly unknown[], TDeref extends string | numb
16017
16017
  * type FooBar = Unique<["foo","foo","bar"]>;
16018
16018
  * ```
16019
16019
  */
16020
- type Unique$1<TList extends readonly unknown[], TDeref extends string | number | never = never> = IfNever$1<TDeref, UnionToTuple$1$1<TupleToUnion$1<TList>>, Process$1A<TList, TDeref>>;
16020
+ type Unique$1<TList extends readonly unknown[], TDeref extends string | number | never = never> = IfNever$1<TDeref, UnionToTuple$1$1<TupleToUnion$1<TList>>, Process$1$1<TList, TDeref>>;
16021
16021
 
16022
16022
  /**
16023
16023
  * **UniqueKeys**`<L,R>`
@@ -24501,23 +24501,23 @@ type ValidChars<T extends readonly string[]> = [] extends T ? true : First<T> ex
24501
24501
  */
24502
24502
  type IsVariable<T extends string> = T extends Variable ? ValidChars<Chars<T>> extends true ? true : false : false;
24503
24503
 
24504
- type Process$1z<TVal, TDefault> = TVal extends Something ? TVal : TDefault;
24504
+ type Process$1A<TVal, TDefault> = TVal extends Something ? TVal : TDefault;
24505
24505
  /**
24506
24506
  * **Default**`<TVal,TDefault,[TProtect]>`
24507
24507
  *
24508
24508
  * Branching operator which allows giving a value `TVal` a _default value_ when
24509
24509
  * it's value is either `null` or `undefined`.
24510
24510
  */
24511
- type Default<TVal, TDefault> = Process$1z<TVal, TDefault>;
24511
+ type Default<TVal, TDefault> = Process$1A<TVal, TDefault>;
24512
24512
 
24513
- type Process$1y<TConditions extends readonly boolean[], TBooleanSeen extends boolean> = [] extends TConditions ? IfEqual<TBooleanSeen, true, boolean, true> : [First<TConditions>] extends [false] ? false : Process$1y<AfterFirst<TConditions>, TBooleanSeen>;
24513
+ type Process$1z<TConditions extends readonly boolean[], TBooleanSeen extends boolean> = [] extends TConditions ? IfEqual<TBooleanSeen, true, boolean, true> : [First<TConditions>] extends [false] ? false : Process$1z<AfterFirst<TConditions>, TBooleanSeen>;
24514
24514
  /**
24515
24515
  * **And**`<TConditions, [TEmpty]>`
24516
24516
  *
24517
24517
  * Allows an array of conditions which are either ARE a boolean value or a
24518
24518
  * function which evaluates to a boolean value to be logically AND'd together.
24519
24519
  */
24520
- type And<TConditions, TEmpty extends boolean = false> = TConditions extends readonly (boolean | LogicFunction)[] ? IsEqual<TConditions, []> extends true ? TEmpty : LogicalReturns<TConditions> extends readonly boolean[] ? Process$1y<LogicalReturns<TConditions>, NarrowlyContains<LogicalReturns<TConditions>, boolean>> : never : never;
24520
+ type And<TConditions, TEmpty extends boolean = false> = TConditions extends readonly (boolean | LogicFunction)[] ? IsEqual<TConditions, []> extends true ? TEmpty : LogicalReturns<TConditions> extends readonly boolean[] ? Process$1z<LogicalReturns<TConditions>, NarrowlyContains<LogicalReturns<TConditions>, boolean>> : never : never;
24521
24521
 
24522
24522
  /**
24523
24523
  * comparison operators which require the base type to be a string
@@ -24562,14 +24562,14 @@ type Comparison<TOp extends ComparatorOperation = ComparatorOperation, TArgs ext
24562
24562
  fn: TFn;
24563
24563
  } : ErrorCondition<"invalid-comparison">;
24564
24564
  type Unionize<T> = T extends readonly unknown[] ? TupleToUnion<T> : T;
24565
- type Process$1x<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;
24565
+ type Process$1y<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
24566
  /**
24567
24567
  * **Compare**`<TVal,TOp,TComparator>`
24568
24568
  *
24569
24569
  * Compares the value `TVal` with `TComparator` using
24570
24570
  * the `TOp` _operator_.
24571
24571
  */
24572
- type Compare$1<TVal, TOp extends ComparatorOperation, TComparator> = WhenNever<Process$1x<TVal, TOp, TComparator>>;
24572
+ type Compare$1<TVal, TOp extends ComparatorOperation, TComparator> = WhenNever<Process$1y<TVal, TOp, TComparator>>;
24573
24573
 
24574
24574
  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
24575
  type NegateTuple<TTuple extends readonly (boolean | LogicFunction)[], TResults extends readonly (boolean | LogicFunction)[] = []> = [] extends TTuple ? IsEqual<TResults, [], false, TResults> : NegateTuple<AfterFirst<TTuple>, [
@@ -24591,7 +24591,7 @@ type NegateTuple<TTuple extends readonly (boolean | LogicFunction)[], TResults e
24591
24591
  */
24592
24592
  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
24593
 
24594
- type Process$1w<TConditions extends readonly boolean[], TBooleanSean extends boolean> = NarrowlyContains<TConditions, true> extends true ? true : [IsEqual<TBooleanSean, true>] extends [true] ? boolean : false;
24594
+ type Process$1x<TConditions extends readonly boolean[], TBooleanSean extends boolean> = NarrowlyContains<TConditions, true> extends true ? true : [IsEqual<TBooleanSean, true>] extends [true] ? boolean : false;
24595
24595
  type ConditionError<TErr> = TErr extends ErrorCondition ? ProxyError<TErr, "Or", "TConditions"> : never;
24596
24596
  /**
24597
24597
  * **Or**`<TConditions, [TEmpty]>`
@@ -24604,16 +24604,16 @@ type ConditionError<TErr> = TErr extends ErrorCondition ? ProxyError<TErr, "Or",
24604
24604
  *
24605
24605
  * **Related:** `And`
24606
24606
  */
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$1w<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", {
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$1x<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
24608
  library: "inferred-types/constants";
24609
24609
  value: TConditions;
24610
24610
  }>;
24611
24611
 
24612
- type Process$1v<TElements extends readonly unknown[], TOp extends ComparatorOperation, TComparator> = [] extends TElements ? false : [WhenNever<Compare$1<First<TElements>, TOp, TComparator>>] extends [true] ? true : Process$1v<AfterFirst<TElements>, TOp, TComparator>;
24612
+ type Process$1w<TElements extends readonly unknown[], TOp extends ComparatorOperation, TComparator> = [] extends TElements ? false : [WhenNever<Compare$1<First<TElements>, TOp, TComparator>>] extends [true] ? true : Process$1w<AfterFirst<TElements>, TOp, TComparator>;
24613
24613
  type Some<TContainer extends Container, TOp extends "extends" | "equals" | "startsWith" | "endsWith" | "lessThan" | "greaterThan", TComparator extends Or<[
24614
24614
  IsEqual<TOp, "startsWith">,
24615
24615
  IsEqual<TOp, "endsWith">
24616
- ]> extends true ? string : Or<[IsEqual<TOp, "lessThan">, IsEqual<TOp, "greaterThan">]> extends true ? NumberLike : unknown> = TContainer extends readonly unknown[] ? Process$1v<TContainer, TOp, TComparator> : TContainer extends Dictionary ? Process$1v<Values<TContainer>, TOp, TComparator> : never;
24616
+ ]> extends true ? string : Or<[IsEqual<TOp, "lessThan">, IsEqual<TOp, "greaterThan">]> extends true ? NumberLike : unknown> = TContainer extends readonly unknown[] ? Process$1w<TContainer, TOp, TComparator> : TContainer extends Dictionary ? Process$1w<Values<TContainer>, TOp, TComparator> : never;
24617
24617
 
24618
24618
  type AllAcc<TList extends readonly unknown[], TExtend> = [] extends TList ? true : If<Extends<First<TList>, TExtend>, AllAcc<AfterFirst<TList>, TExtend>, false>;
24619
24619
  /**
@@ -24838,11 +24838,11 @@ type DoesExtend<TValue, TExtends> = IsNever<TValue> extends true ? false : [TVal
24838
24838
  type DoesNotExtend<TValue, TNotExtends> = TValue extends TNotExtends ? false : true;
24839
24839
 
24840
24840
  type Test$1<TValue extends string, TComparator extends string> = TValue extends `${string}${TComparator}` ? true : false;
24841
- type Process$1u<TValue extends string, TComparator extends string> = IsStringLiteral<TComparator> extends true ? IsStringLiteral<TValue> extends true ? Test$1<TValue, TComparator> : boolean : boolean;
24841
+ type Process$1v<TValue extends string, TComparator extends string> = IsStringLiteral<TComparator> extends true ? IsStringLiteral<TValue> extends true ? Test$1<TValue, TComparator> : boolean : boolean;
24842
24842
  type ProcessEach$1<TValue extends string, TComparator extends readonly string[]> = Or<{
24843
- [K in keyof TComparator]: Process$1u<TValue, TComparator[K]>;
24843
+ [K in keyof TComparator]: Process$1v<TValue, TComparator[K]>;
24844
24844
  }>;
24845
- type PreProcess$4<TValue extends string, TComparator extends string | readonly string[]> = TComparator extends readonly string[] ? ProcessEach$1<TValue, TComparator> : TComparator extends string ? Process$1u<TValue, TComparator> : never;
24845
+ type PreProcess$4<TValue extends string, TComparator extends string | readonly string[]> = TComparator extends readonly string[] ? ProcessEach$1<TValue, TComparator> : TComparator extends string ? Process$1v<TValue, TComparator> : never;
24846
24846
  /**
24847
24847
  * **EndsWith**<TValue, TComparator>
24848
24848
  *
@@ -24917,13 +24917,13 @@ type _HasArray<TList extends readonly unknown[]> = [] extends TList ? false : Is
24917
24917
  */
24918
24918
  type HasArray<TList extends readonly unknown[]> = _HasArray<TList>;
24919
24919
 
24920
- type Process$1t<TStr extends string, TChars extends string, _TOp extends "any" | "all"> = TStr extends `${string}${TChars}${string}` ? true : false;
24920
+ type Process$1u<TStr extends string, TChars extends string, _TOp extends "any" | "all"> = TStr extends `${string}${TChars}${string}` ? true : false;
24921
24921
  type ProcessTuple$4<TStr extends string, TChars extends readonly string[], TOp extends "any" | "all"> = TOp extends "any" ? Or<{
24922
24922
  [K in keyof TChars]: TStr extends `${string}${TChars[K]}${string}` ? true : false;
24923
24923
  }> : And<{
24924
24924
  [K in keyof TChars]: TStr extends `${string}${TChars[K]}${string}` ? true : false;
24925
24925
  }>;
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$1t<TStr, TChars, TOp>;
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$1u<TStr, TChars, TOp>;
24927
24927
  /**
24928
24928
  * **HasCharacters**`<TStr,TChars>`
24929
24929
  *
@@ -24945,7 +24945,7 @@ type HasCharacters<TStr extends string, TChars extends string | readonly string[
24945
24945
  */
24946
24946
  type HasIndex<TContainer, TIdx extends PropertyKey> = TContainer extends Container ? TIdx extends keyof TContainer ? true : false : false;
24947
24947
 
24948
- type Process$1s<TStr extends string, TChars extends string> = ReplaceAll<TStr, TChars, ""> extends "" ? false : true;
24948
+ type Process$1t<TStr extends string, TChars extends string> = ReplaceAll<TStr, TChars, ""> extends "" ? false : true;
24949
24949
  /**
24950
24950
  * **HasOtherCharacters**`<TStr,TChars>`
24951
24951
  *
@@ -24957,7 +24957,7 @@ type Process$1s<TStr extends string, TChars extends string> = ReplaceAll<TStr, T
24957
24957
  *
24958
24958
  * **Related:** `HasCharacters`
24959
24959
  */
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$1s<TStr, TChars> : TChars extends readonly string[] ? Process$1s<TStr, TupleToUnion<TChars>> : never;
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$1t<TStr, TChars> : TChars extends readonly string[] ? Process$1t<TStr, TupleToUnion<TChars>> : never;
24961
24961
 
24962
24962
  /**
24963
24963
  * **HasParameters**`<T>`
@@ -24991,7 +24991,7 @@ type HasProp<TTest, TProp extends string, TIf = true, TElse = false> = TTest ext
24991
24991
  */
24992
24992
  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
24993
 
24994
- type Process$1r<A extends readonly unknown[], B extends readonly unknown[]> = And<{
24994
+ type Process$1s<A extends readonly unknown[], B extends readonly unknown[]> = And<{
24995
24995
  [K in keyof A]: K extends keyof B ? true : false;
24996
24996
  }>;
24997
24997
  type _Keys$8<T extends object> = UnionToTuple$1<keyof RemoveIndexKeys<T>> extends readonly ObjectKey[] ? UnionToTuple$1<keyof RemoveIndexKeys<T>> : never;
@@ -25000,7 +25000,7 @@ type _Keys$8<T extends object> = UnionToTuple$1<keyof RemoveIndexKeys<T>> extend
25000
25000
  *
25001
25001
  * Boolean operator which compares two lists to see if they have the same keys.
25002
25002
  */
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$1r<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;
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$1s<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
25004
 
25005
25005
  type Find$1<TList extends readonly unknown[], TComparator> = Or<{
25006
25006
  [K in keyof TList]: [TList[K]] extends [TComparator] ? true : false;
@@ -25008,8 +25008,8 @@ type Find$1<TList extends readonly unknown[], TComparator> = Or<{
25008
25008
  type Compare<TList extends readonly unknown[], TComparator extends readonly unknown[]> = And<{
25009
25009
  [K in keyof TList]: Find$1<TComparator, TList[K]> extends boolean ? Find$1<TComparator, TList[K]> : never;
25010
25010
  }, true>;
25011
- type Process$1q<TList extends readonly unknown[], TComparator extends readonly unknown[]> = TList["length"] extends TComparator["length"] ? Compare<TList, TComparator> : false;
25012
- type _HasSameValues<TContainer extends readonly unknown[], TComparator extends readonly unknown[]> = TContainer extends readonly unknown[] ? Process$1q<TContainer, TComparator> : TContainer extends Dictionary ? Process$1q<Values<TContainer>, TComparator> : never;
25011
+ type Process$1r<TList extends readonly unknown[], TComparator extends readonly unknown[]> = TList["length"] extends TComparator["length"] ? Compare<TList, TComparator> : false;
25012
+ type _HasSameValues<TContainer extends readonly unknown[], TComparator extends readonly unknown[]> = TContainer extends readonly unknown[] ? Process$1r<TContainer, TComparator> : TContainer extends Dictionary ? Process$1r<Values<TContainer>, TComparator> : never;
25013
25013
  /**
25014
25014
  * **HasSameValues**`<TContainer,TComparator>`
25015
25015
  *
@@ -25370,7 +25370,7 @@ type RegularFn<Fn> = Fn extends ((...args: any[]) => any) ? (...args: Parameters
25370
25370
  */
25371
25371
  type IsLiteralFn<TFn> = TFn extends AnyFunction ? IsEqual<RegularFn<TFn>, TFn> : false;
25372
25372
 
25373
- type Process$1p<T> = UnionToTuple$1<T> extends readonly unknown[] ? RetainLiterals<UnionToTuple$1<T>>["length"] extends UnionToTuple$1<T>["length"] ? true : false : never;
25373
+ type Process$1q<T> = UnionToTuple$1<T> extends readonly unknown[] ? RetainLiterals<UnionToTuple$1<T>>["length"] extends UnionToTuple$1<T>["length"] ? true : false : never;
25374
25374
  /**
25375
25375
  * **IsLiteralUnion**`<T>`
25376
25376
  *
@@ -25379,7 +25379,7 @@ type Process$1p<T> = UnionToTuple$1<T> extends readonly unknown[] ? RetainLitera
25379
25379
  *
25380
25380
  * **Related:** `IsLiteralUnion`, `IsWideUnion`
25381
25381
  */
25382
- type IsLiteralUnion<T> = [IsUnion<T>] extends [true] ? Process$1p<T> : false;
25382
+ type IsLiteralUnion<T> = [IsUnion<T>] extends [true] ? Process$1q<T> : false;
25383
25383
 
25384
25384
  /**
25385
25385
  * **IsNarrowingFn**`<TFn>`
@@ -25401,7 +25401,7 @@ type IsNarrowingFn<TFn> = TFn extends AnyFunction ? Not<IsEqual<LiteralFn<TFn>,
25401
25401
  */
25402
25402
  type IsNegativeNumber<T extends NumberLike> = IsWideType<T> extends true ? boolean : IsEqual<T, NumberLike> extends true ? boolean : AsString<T> extends `-${number}` ? true : false;
25403
25403
 
25404
- type Process$1o<T> = UnionToTuple$1<T> extends readonly unknown[] ? RetainLiterals<UnionToTuple$1<T>>["length"] extends UnionToTuple$1<T>["length"] ? false : true : never;
25404
+ type Process$1p<T> = UnionToTuple$1<T> extends readonly unknown[] ? RetainLiterals<UnionToTuple$1<T>>["length"] extends UnionToTuple$1<T>["length"] ? false : true : never;
25405
25405
  /**
25406
25406
  * **IsNonLiteralUnion**`<T>`
25407
25407
  *
@@ -25410,7 +25410,7 @@ type Process$1o<T> = UnionToTuple$1<T> extends readonly unknown[] ? RetainLitera
25410
25410
  *
25411
25411
  * **Related:** `IsLiteralUnion`, `IsWideUnion`
25412
25412
  */
25413
- type IsNonLiteralUnion<T> = If<IsUnion<T>, Process$1o<T>, false>;
25413
+ type IsNonLiteralUnion<T> = If<IsUnion<T>, Process$1p<T>, false>;
25414
25414
 
25415
25415
  /**
25416
25416
  * **NotEqual**`<X,Y>`
@@ -25502,7 +25502,7 @@ type IsOptional<T> = IsUnion<T> extends true ? Contains<UnionToTuple$1<T>, undef
25502
25502
  */
25503
25503
  type IsRequired<T> = Not<IsOptional<T>>;
25504
25504
 
25505
- type Process$1n<T> = [IsNever<T>] extends [true] ? false : [IsScalar<T>] extends [true] ? true : [IsUndefined<T>] extends [true] ? true : [IsUnion<T>] extends [true] ? boolean : false;
25505
+ type Process$1o<T> = [IsNever<T>] extends [true] ? false : [IsScalar<T>] extends [true] ? true : [IsUndefined<T>] extends [true] ? true : [IsUnion<T>] extends [true] ? boolean : false;
25506
25506
  /**
25507
25507
  * **IsOptionalScalar**`<T>`
25508
25508
  *
@@ -25510,7 +25510,7 @@ type Process$1n<T> = [IsNever<T>] extends [true] ? false : [IsScalar<T>] extends
25510
25510
  *
25511
25511
  * **Related:** `IsScalar`
25512
25512
  */
25513
- type IsOptionalScalar<T> = Process$1n<T> extends boolean ? Process$1n<T> : never;
25513
+ type IsOptionalScalar<T> = Process$1o<T> extends boolean ? Process$1o<T> : never;
25514
25514
 
25515
25515
  /**
25516
25516
  * **IsPositiveNumber**`<T>`
@@ -25600,7 +25600,7 @@ type IsStrictPromise<T> = T extends {
25600
25600
  finally?: (onfinally?: () => void) => any;
25601
25601
  } ? true : false;
25602
25602
 
25603
- type Process$1m<T, TNever> = [IsNever<T>] extends [true] ? TNever : [IsEqual<T, true>] extends [true] ? true : false;
25603
+ type Process$1n<T, TNever> = [IsNever<T>] extends [true] ? TNever : [IsEqual<T, true>] extends [true] ? true : false;
25604
25604
  /**
25605
25605
  * **IsTrue**`<T,[TNever]>`
25606
25606
  *
@@ -25614,7 +25614,7 @@ type Process$1m<T, TNever> = [IsNever<T>] extends [true] ? TNever : [IsEqual<T,
25614
25614
  * type F2 = IsTrue<"foobar">;
25615
25615
  * ```
25616
25616
  */
25617
- type IsTrue<T, TNever = never> = Process$1m<T, TNever>;
25617
+ type IsTrue<T, TNever = never> = Process$1n<T, TNever>;
25618
25618
 
25619
25619
  /**
25620
25620
  * **IsTruthy**`<T>`
@@ -25628,7 +25628,7 @@ type IsTruthy<T> = [
25628
25628
  T
25629
25629
  ] 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
25630
 
25631
- type Process$1l<T> = [IsNever<T>] extends [true] ? false : T extends readonly unknown[] ? number extends T["length"] ? false : true : false;
25631
+ type Process$1m<T> = [IsNever<T>] extends [true] ? false : T extends readonly unknown[] ? number extends T["length"] ? false : true : false;
25632
25632
  /**
25633
25633
  * **IsTuple**`<T>`
25634
25634
  *
@@ -25641,7 +25641,7 @@ type Process$1l<T> = [IsNever<T>] extends [true] ? false : T extends readonly un
25641
25641
  * - types such as `string[]`, etc. are _not_ tuples as they
25642
25642
  * do not discretely specify a length of elements
25643
25643
  */
25644
- type IsTuple<T> = Process$1l<T> extends boolean ? Process$1l<T> : never;
25644
+ type IsTuple<T> = Process$1m<T> extends boolean ? Process$1m<T> : never;
25645
25645
 
25646
25646
  /**
25647
25647
  * **IsUndefined**
@@ -25802,7 +25802,7 @@ type InvalidNever = Throw<"invalid-never", `The value of T when calling IsWideTy
25802
25802
  */
25803
25803
  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
25804
 
25805
- type Process$1k<T extends readonly unknown[]> = {
25805
+ type Process$1l<T extends readonly unknown[]> = {
25806
25806
  [K in keyof T]: IsWideType<T[K]> extends true ? true : Or<[IsUndefined<T[K]>, IsNull<T[K]>]> extends true ? true : false;
25807
25807
  };
25808
25808
  /**
@@ -25813,7 +25813,7 @@ type Process$1k<T extends readonly unknown[]> = {
25813
25813
  *
25814
25814
  * **Related:** `IsNonLiteralUnion`
25815
25815
  */
25816
- type IsWideUnion<T> = [IsUnion<T>] extends [true] ? [Process$1k<UnionToTuple$1<T>>] extends [readonly true[]] ? true : false : false;
25816
+ type IsWideUnion<T> = [IsUnion<T>] extends [true] ? [Process$1l<UnionToTuple$1<T>>] extends [readonly true[]] ? true : false : false;
25817
25817
 
25818
25818
  type Overlap<TKeys extends readonly ObjectKey[], TComparator extends AnyObject> = [] extends TKeys ? false : First<TKeys> extends keyof TComparator ? true : Overlap<AfterFirst<TKeys>, TComparator>;
25819
25819
  /**
@@ -26021,7 +26021,7 @@ type SomeAcc<TList extends readonly unknown[], TExtend> = [] extends TList ? fal
26021
26021
  type SomeExtend<TList extends readonly unknown[], TExtend> = SomeAcc<TList, TExtend>;
26022
26022
 
26023
26023
  type Check<TValue extends string, TComparator extends string | number> = TValue extends `${TComparator}${string}` ? true : false;
26024
- type Process$1j<TValue extends string, TComparator extends string | number | readonly string[]> = TComparator extends readonly string[] ? Check<[
26024
+ type Process$1k<TValue extends string, TComparator extends string | number | readonly string[]> = TComparator extends readonly string[] ? Check<[
26025
26025
  TValue
26026
26026
  ] extends [number] ? `${TValue}` : TValue, TupleToUnion<TComparator>> : Check<[
26027
26027
  TValue
@@ -26040,9 +26040,9 @@ type Process$1j<TValue extends string, TComparator extends string | number | rea
26040
26040
  * - this can be much more type efficient for unions with lots of characters
26041
26041
  * - if you need larger pattern matches then use a Tuple for `TComparator`
26042
26042
  */
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$1j<AsString<TValue>, TComparator>, boolean> extends true ? true : Process$1j<AsString<TValue>, TComparator>;
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$1k<AsString<TValue>, TComparator>, boolean> extends true ? true : Process$1k<AsString<TValue>, TComparator>;
26044
26044
 
26045
- type Process$1i<T extends readonly unknown[]> = HasArray<T> extends true ? true : false;
26045
+ type Process$1j<T extends readonly unknown[]> = HasArray<T> extends true ? true : false;
26046
26046
  /**
26047
26047
  * **UnionHasArray**`<T>`
26048
26048
  *
@@ -26052,7 +26052,7 @@ type Process$1i<T extends readonly unknown[]> = HasArray<T> extends true ? true
26052
26052
  * - and that one of the elements of the union is an array
26053
26053
  * of some sort.
26054
26054
  */
26055
- type UnionHasArray<T> = IsUnion<T> extends true ? Process$1i<UnionToTuple$1<T>> : false;
26055
+ type UnionHasArray<T> = IsUnion<T> extends true ? Process$1j<UnionToTuple$1<T>> : false;
26056
26056
 
26057
26057
  type WideBooleanNotAllowed = ErrorCondition<"wide-boolean-not-allowed", `Call to Validate<T,E> received a wide boolean type for T!`>;
26058
26058
  type WideReturnNotAllowed<T> = ErrorCondition<"wide-return-not-allowed", `Call to Validate<T,E> returned a wide type: ${AsString<T>}!`>;
@@ -26158,7 +26158,7 @@ type IfEquals<X, Y, IF = X & Y, ELSE = Exclude<X, Y>> = IfEqual<X, Y, IF, ELSE>;
26158
26158
  type IfErrorCondition<T, IF, ELSE = T> = IsErrorCondition<T> extends true ? T extends ErrorConditionShape ? IF : never : ELSE;
26159
26159
 
26160
26160
  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$1h<TValues extends readonly unknown[], TIgnore, TNotFound> = [] extends TValues ? TNotFound : First<TValues> extends TIgnore ? Process$1h<AfterFirst<TValues>, TIgnore, TNotFound> : First<TValues>;
26161
+ type Process$1i<TValues extends readonly unknown[], TIgnore, TNotFound> = [] extends TValues ? TNotFound : First<TValues> extends TIgnore ? Process$1i<AfterFirst<TValues>, TIgnore, TNotFound> : First<TValues>;
26162
26162
  /**
26163
26163
  * **Iff**`<TValues,[TIgnore],[TOffset],[TNotFound]>`
26164
26164
  *
@@ -26177,7 +26177,7 @@ type Iff<TValues extends NonArray | readonly unknown[], TIgnore = Nothing, TOffs
26177
26177
  library: "inferred-types/constants";
26178
26178
  values: AsArray<TValues>;
26179
26179
  offset: TOffset;
26180
- }> : Process$1h<AsArray<TValues>, TIgnore, TNotFound>;
26180
+ }> : Process$1i<AsArray<TValues>, TIgnore, TNotFound>;
26181
26181
 
26182
26182
  /**
26183
26183
  * **IfLength**`<TEvaluate,TLength,IF,[ELSE],[MAYBE]>`
@@ -26222,8 +26222,8 @@ type Merge$1<TUser extends Partial<OnPassRemap>, TKeys extends readonly (ObjectK
26222
26222
  false: false;
26223
26223
  error: Constant<"not-set">;
26224
26224
  }> = [] extends TKeys ? TConfig : Merge$1<TUser, AfterFirst<TKeys>, As<ExpandDictionary<Record<First<TKeys>, TUser[First<TKeys>]> & Omit<TConfig, First<TKeys>>>, OnPassRemap>>;
26225
- type Process$1g<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;
26226
- type Iterate$7<TTest extends readonly unknown[], TPass, TRemap extends OnPassRemap<unknown, unknown, unknown>> = [] extends TTest ? TPass : Process$1g<First<TTest>, TPass, TRemap> extends TPass ? Iterate$7<AfterFirst<TTest>, TPass, TRemap> : Process$1g<First<TTest>, TPass, TRemap>;
26225
+ type Process$1h<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;
26226
+ type Iterate$7<TTest extends readonly unknown[], TPass, TRemap extends OnPassRemap<unknown, unknown, unknown>> = [] extends TTest ? TPass : Process$1h<First<TTest>, TPass, TRemap> extends TPass ? Iterate$7<AfterFirst<TTest>, TPass, TRemap> : Process$1h<First<TTest>, TPass, TRemap>;
26227
26227
  /**
26228
26228
  * **OnPass**`<TTest, TPass,[TRemap],[TFalse]>`
26229
26229
  *
@@ -26237,7 +26237,7 @@ type Iterate$7<TTest extends readonly unknown[], TPass, TRemap extends OnPassRem
26237
26237
  * - the `TRemap` allows you to remap error conditions
26238
26238
  * as well if needed
26239
26239
  */
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$1g<TTest, TPass, TRemap extends OnPassRemap<never, false, Constant<"not-set">> ? TRemap : Merge$1<TRemap, Keys<TRemap>>>;
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$1h<TTest, TPass, TRemap extends OnPassRemap<never, false, Constant<"not-set">> ? TRemap : Merge$1<TRemap, Keys<TRemap>>>;
26241
26241
 
26242
26242
  /**
26243
26243
  * **Passthrough**`<TContent,TPass,THandle>`
@@ -26289,7 +26289,7 @@ type AsDoneFn<T> = T extends {
26289
26289
  */
26290
26290
  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
26291
 
26292
- type Process$1f<T extends readonly unknown[]> = TupleToUnion<RemoveMarked<{
26292
+ type Process$1g<T extends readonly unknown[]> = TupleToUnion<RemoveMarked<{
26293
26293
  [K in keyof T]: T[K] extends Nothing ? Constant<"Marked"> : T[K];
26294
26294
  }>>;
26295
26295
  /**
@@ -26304,7 +26304,7 @@ type Process$1f<T extends readonly unknown[]> = TupleToUnion<RemoveMarked<{
26304
26304
  * which defaults to `never`)
26305
26305
  * - all other values are just proxied through
26306
26306
  */
26307
- type AsSomething<T, TNonUnion = never> = IsUnion<T> extends true ? Process$1f<UnionToTuple$1<T>> : T extends Nothing ? TNonUnion : T;
26307
+ type AsSomething<T, TNonUnion = never> = IsUnion<T> extends true ? Process$1g<UnionToTuple$1<T>> : T extends Nothing ? TNonUnion : T;
26308
26308
 
26309
26309
  /**
26310
26310
  * Define a class constructor; allowing strong typing for constructor's parameters
@@ -26382,13 +26382,13 @@ type RemoveEmpty<T> = T extends Tuple ? As<RemoveMarked<ProcessTup<T>>, readonly
26382
26382
 
26383
26383
  type Marked$2 = typeof MARKED;
26384
26384
  type _Keys$4<T extends object> = UnionToTuple$1<keyof RemoveIndexKeys<T>> extends readonly ObjectKey[] ? UnionToTuple$1<keyof RemoveIndexKeys<T>> : never;
26385
- type Process$1e<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$1e<T, AfterFirst<TKeys>, TResults> : Process$1e<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;
26385
+ type Process$1f<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$1f<T, AfterFirst<TKeys>, TResults> : Process$1f<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
26386
  /**
26387
26387
  * **RemoveMarked**`<T>`
26388
26388
  *
26389
26389
  * Removes all values in `T` which extends `Constant<"Marked">`
26390
26390
  */
26391
- type RemoveMarked<T extends Container> = Process$1e<T, T extends Tuple ? NumericKeys<T> : _Keys$4<T>>;
26391
+ type RemoveMarked<T extends Container> = Process$1f<T, T extends Tuple ? NumericKeys<T> : _Keys$4<T>>;
26392
26392
 
26393
26393
  /**
26394
26394
  * **RemoveIndexKeys**`<T>`
@@ -26447,7 +26447,7 @@ type _AsArray<T> = T extends Tuple ? Mutable<T> : If<IsUndefined<T>, [
26447
26447
  */
26448
26448
  type AsArray<T> = _AsArray<T> extends any[] ? _AsArray<T> : never;
26449
26449
 
26450
- type Process$1d<T extends `${number}`> = If<IsStringLiteral<T>, StripLeading<T, "-">, string>;
26450
+ type Process$1e<T extends `${number}`> = If<IsStringLiteral<T>, StripLeading<T, "-">, string>;
26451
26451
  /**
26452
26452
  * **Abs**`<T>`
26453
26453
  *
@@ -26456,7 +26456,7 @@ type Process$1d<T extends `${number}`> = If<IsStringLiteral<T>, StripLeading<T,
26456
26456
  * - you can pass in a numeric string literal and it perform ABS func while
26457
26457
  * preserving string literal type
26458
26458
  */
26459
- type Abs<T extends NumberLike> = T extends number ? AsNumber<Process$1d<`${T}`>> : T extends `${number}` ? Process$1d<T> : never;
26459
+ type Abs<T extends NumberLike> = T extends number ? AsNumber<Process$1e<`${T}`>> : T extends `${number}` ? Process$1e<T> : never;
26460
26460
 
26461
26461
  /**
26462
26462
  * **AbsMaybe**`<T>`
@@ -26501,13 +26501,13 @@ type GrowExp<A extends any[], N extends number, P extends any[][], L extends num
26501
26501
  type MapItemType<T, I> = {
26502
26502
  [K in keyof T]: I;
26503
26503
  };
26504
- type Process$1c<T, N extends number> = N extends 0 ? [] : MapItemType<GrowExp<[0], N, []>, T>;
26504
+ type Process$1d<T, N extends number> = N extends 0 ? [] : MapItemType<GrowExp<[0], N, []>, T>;
26505
26505
  /**
26506
26506
  * **FixedLengthArray**`<T,N>`
26507
26507
  *
26508
26508
  * Creates a fixed length `<N>` array of a given type `<T>`
26509
26509
  */
26510
- type FixedLengthArray<T, N extends number> = Process$1c<T, N> extends readonly unknown[] ? Process$1c<T, N> : never;
26510
+ type FixedLengthArray<T, N extends number> = Process$1d<T, N> extends readonly unknown[] ? Process$1d<T, N> : never;
26511
26511
 
26512
26512
  /**
26513
26513
  * **ParseInt**`<T>`
@@ -26530,7 +26530,7 @@ type ParseInt<T> = T extends `${infer N extends number}` ? N : never;
26530
26530
  */
26531
26531
  type AsNumber<T> = T extends number ? T : T extends `${number}` ? ParseInt<T> : never;
26532
26532
 
26533
- type Process$1b<TTuple extends readonly string[], TSeparator extends string, TResult extends string = ""> = [] extends TTuple ? TResult : Process$1b<AfterFirst<TTuple>, TSeparator, TResult extends "" ? First<TTuple> extends "" ? TResult : `${First<TTuple>}` : First<TTuple> extends "" ? TResult : `${TResult}${TSeparator}${First<TTuple>}`>;
26533
+ type Process$1c<TTuple extends readonly string[], TSeparator extends string, TResult extends string = ""> = [] extends TTuple ? TResult : Process$1c<AfterFirst<TTuple>, TSeparator, TResult extends "" ? First<TTuple> extends "" ? TResult : `${First<TTuple>}` : First<TTuple> extends "" ? TResult : `${TResult}${TSeparator}${First<TTuple>}`>;
26534
26534
  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
26535
  /**
26536
26536
  * **Join**`<TArr,[TSeparator],[TMax]>`
@@ -26545,7 +26545,7 @@ type Slicer<TTuple extends readonly unknown[], TMax extends number | null, TElli
26545
26545
  *
26546
26546
  * **Related:** `Concat<TArr>`
26547
26547
  */
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$1b<Slicer<TTuple, TMax, TEllipsis>, TSeparator> : Process$1b<ToStringArray<TTuple>, TSeparator> : Process$1b<ToStringArray<TTuple>, TSeparator> : never;
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$1c<Slicer<TTuple, TMax, TEllipsis>, TSeparator> : Process$1c<ToStringArray<TTuple>, TSeparator> : Process$1c<ToStringArray<TTuple>, TSeparator> : never;
26549
26549
 
26550
26550
  /**
26551
26551
  * **AsString**<T>
@@ -26631,9 +26631,9 @@ type RightMostDigit<s extends string> = s extends `${infer rest}${NumericChar}`
26631
26631
  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
26632
  type _Subtract<TValue extends `${number}`, TCountArr extends readonly unknown[]> = [] extends TCountArr ? TValue : _Subtract<Decrement<TValue>, AfterFirst<TCountArr>>;
26633
26633
  type AddNegatives<A extends `${number}`, B extends `${number}`> = SumStrings<A, B>;
26634
- type Process$1a<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>;
26634
+ type Process$1b<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
26635
  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$1a<A, B>, `${number}`> : As<Process$1a<A, AsString<B>>, `${number}`> : A extends number ? B extends number ? AsNumber<Process$1a<`${A}`, `${B}`>> : AsNumber<Process$1a<`${A}`, As<B, `${number}`>>> : never;
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$1b<A, B>, `${number}`> : As<Process$1b<A, AsString<B>>, `${number}`> : A extends number ? B extends number ? AsNumber<Process$1b<`${A}`, `${B}`>> : AsNumber<Process$1b<`${A}`, As<B, `${number}`>>> : never;
26637
26637
  /**
26638
26638
  * **Add**`<A,B>`
26639
26639
  *
@@ -26644,7 +26644,7 @@ type PreProcess$2<A extends NumberLike, B extends NumberLike> = CheckWide<A, B>
26644
26644
  */
26645
26645
  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
26646
 
26647
- type Process$19<T extends `${number}`> = EnsureLeading<T, "-">;
26647
+ type Process$1a<T extends `${number}`> = EnsureLeading<T, "-">;
26648
26648
  /**
26649
26649
  * **AsNegativeNumber**
26650
26650
  *
@@ -26652,7 +26652,7 @@ type Process$19<T extends `${number}`> = EnsureLeading<T, "-">;
26652
26652
  *
26653
26653
  * **Related**: `Abs`, `InvertNumericSign`
26654
26654
  */
26655
- type AsNegativeNumber<T extends NumberLike> = T extends Zero ? T : T extends number ? AsNumber<Process$19<`${T}`>> extends number ? AsNumber<Process$19<`${T}`>> : never : T extends `${number}` ? Process$19<T> extends `${number}` ? Process$19<T> : never : never;
26655
+ type AsNegativeNumber<T extends NumberLike> = T extends Zero ? T : T extends number ? AsNumber<Process$1a<`${T}`>> extends number ? AsNumber<Process$1a<`${T}`>> : never : T extends `${number}` ? Process$1a<T> extends `${number}` ? Process$1a<T> : never : never;
26656
26656
 
26657
26657
  type Convert$4<T> = T extends `${number}` ? ToNumber<T> : T;
26658
26658
  type ConvertTuple<T> = T extends unknown[] ? {
@@ -26725,7 +26725,7 @@ type AsError__Meta = [
26725
26725
  type Props$1<T extends AnyObject | undefined> = T extends AnyObject ? T : EmptyObject;
26726
26726
  type IdFrom<T extends AnyObject> = AsIndexOf<T, "id", never>;
26727
26727
  type LibraryFrom<T extends AnyObject> = AsIndexOf<T, "library", never>;
26728
- type Process$18<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", {
26728
+ type Process$19<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
26729
  id: IdFrom<Props$1<T[2]>>;
26730
26730
  library: LibraryFrom<Props$1<T[2]>>;
26731
26731
  }> : ErrorCondition<T[0], T[1], never>;
@@ -26754,7 +26754,7 @@ type Process$18<T extends AsError__Meta> = IsEqual<T, [string, string]> extends
26754
26754
  */
26755
26755
  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
26756
  library: "inferred-types/constants";
26757
- }> : TType extends AsError__Meta ? Process$18<TType> : Throw<"failed-to-wrap", Concat<[
26757
+ }> : TType extends AsError__Meta ? Process$19<TType> : Throw<"failed-to-wrap", Concat<[
26758
26758
  "An unexpected value -- ",
26759
26759
  ToString<TType>,
26760
26760
  " -- was passed into the AsError<T> type utility!"
@@ -26999,7 +26999,7 @@ type StackTrace = StackFrame[];
26999
26999
  * Iterates over each element of the Tuple
27000
27000
  */
27001
27001
  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$17<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;
27002
+ type Process$18<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
27003
  /**
27004
27004
  * **Filter**`<TList, TComparator, [TOp]>`
27005
27005
  *
@@ -27023,7 +27023,7 @@ type Process$17<TList extends unknown[] | readonly unknown[], TFilter, TOp exten
27023
27023
  *
27024
27024
  * **Related:** `RetainFromList`, `RemoveFromList`
27025
27025
  */
27026
- type Filter<TList extends readonly unknown[], TComparator, TOp extends ComparatorOperation = "extends"> = TList extends readonly unknown[] ? IfNever<TComparator, RemoveNever<TList>, If<IsArray<TComparator>, Process$17<TList, TupleToUnion<TComparator>, TOp>, Process$17<TList, TComparator, TOp>>> : never;
27026
+ type Filter<TList extends readonly unknown[], TComparator, TOp extends ComparatorOperation = "extends"> = TList extends readonly unknown[] ? IfNever<TComparator, RemoveNever<TList>, If<IsArray<TComparator>, Process$18<TList, TupleToUnion<TComparator>, TOp>, Process$18<TList, TComparator, TOp>>> : never;
27027
27027
 
27028
27028
  /**
27029
27029
  * Converts a Tuple type into a _union_ of the tuple elements
@@ -27267,7 +27267,7 @@ type CardinalityIn<T extends Cardinality> = T extends `${infer IN}:${string}` ?
27267
27267
  type CardinalityOut<T extends Cardinality> = T extends `${string}:${infer OUT}` ? OUT : never;
27268
27268
  type CardinalityInput<T, C extends Cardinality> = UnionToTuple$1<C> extends readonly unknown[] ? First<UnionToTuple$1<C>> extends 1 ? T : T[] : T | undefined;
27269
27269
 
27270
- type Process$16<TChars extends readonly string[]> = {
27270
+ type Process$17<TChars extends readonly string[]> = {
27271
27271
  [K in keyof TChars]: Capitalize<TChars[K]>;
27272
27272
  };
27273
27273
  /**
@@ -27276,7 +27276,7 @@ type Process$16<TChars extends readonly string[]> = {
27276
27276
  * Type utility which converts all alphabetic characters to their
27277
27277
  * UPPERCASE variant.
27278
27278
  */
27279
- type AllCaps<T extends string> = If<IsStringLiteral<T>, Chars<T> extends readonly string[] ? Process$16<Chars<T>> extends readonly string[] ? Concat<Process$16<Chars<T>>> : never : Chars<T>, string>;
27279
+ type AllCaps<T extends string> = If<IsStringLiteral<T>, Chars<T> extends readonly string[] ? Process$17<Chars<T>> extends readonly string[] ? Concat<Process$17<Chars<T>>> : never : Chars<T>, string>;
27280
27280
 
27281
27281
  /**
27282
27282
  * **CamelCase**`<TString,TPreserveWhitespace>`
@@ -27324,7 +27324,7 @@ type _DU<T extends string> = T extends Lowercase<T> ? T : `-${Lowercase<T>}`;
27324
27324
  */
27325
27325
  type DashUppercase<T extends string> = HasUppercase<T> extends false ? T : T extends `${infer C0}${infer C1}${infer R}` ? `${_DU<C0>}${_DU<C1>}${DashUppercase<R>}` : T extends `${infer C0}${infer R}` ? `${_DU<C0>}${DashUppercase<R>}` : "";
27326
27326
 
27327
- type Process$15<TString extends string, TPreserve extends boolean = false> = TPreserve extends true ? Concat<[
27327
+ type Process$16<TString extends string, TPreserve extends boolean = false> = TPreserve extends true ? Concat<[
27328
27328
  LeftWhitespace<TString>,
27329
27329
  KebabCase<TString, false>,
27330
27330
  RightWhitespace<TString>
@@ -27344,7 +27344,7 @@ type Process$15<TString extends string, TPreserve extends boolean = false> = TPr
27344
27344
  * type Dash = Dasherize<"\n foo bar \t">;
27345
27345
  * ```
27346
27346
  */
27347
- type KebabCase<TString extends string, TPreserve extends boolean = false> = Process$15<TString, TPreserve> extends string ? Process$15<TString, TPreserve> : never;
27347
+ type KebabCase<TString extends string, TPreserve extends boolean = false> = Process$16<TString, TPreserve> extends string ? Process$16<TString, TPreserve> : never;
27348
27348
 
27349
27349
  /**
27350
27350
  * **LowerAllCaps**`<T>
@@ -30189,7 +30189,7 @@ type PhoneCountryLookup = Mutable<[...typeof PHONE_COUNTRY_CODES]>;
30189
30189
  */
30190
30190
  type PhoneCountryCode = FirstOfEach<PhoneCountryLookup>;
30191
30191
 
30192
- type Process$14<T extends string, _TDelimiter extends PhoneNumberDelimiter = PhoneNumberDelimiter> = OnPass<[
30192
+ type Process$15<T extends string, _TDelimiter extends PhoneNumberDelimiter = PhoneNumberDelimiter> = OnPass<[
30193
30193
  ], T>;
30194
30194
  /**
30195
30195
  * **PhoneNumber**`<[T]>`
@@ -30210,7 +30210,7 @@ type Process$14<T extends string, _TDelimiter extends PhoneNumberDelimiter = Pho
30210
30210
  *
30211
30211
  * - Related: `PhoneNumberWithCountryCode`, `UsPhoneNumber`
30212
30212
  */
30213
- type PhoneNumber<T extends number | string | null = null, TDelimiter extends PhoneNumberDelimiter = PhoneNumberDelimiter> = T extends null ? LocalPhoneNumber<TDelimiter> | CountryPhoneNumber<TDelimiter> | InternationalPhoneNumber<TDelimiter> : IsStringLiteral<T> extends true ? Process$14<As<T, string>, TDelimiter> : IsNumericLiteral<T> extends true ? Process$14<`${As<T, number>}`, TDelimiter> : T extends string ? string | ErrorCondition<"invalid-phone-number"> : T extends number ? number | ErrorCondition<"invalid-phone-number"> : never;
30213
+ type PhoneNumber<T extends number | string | null = null, TDelimiter extends PhoneNumberDelimiter = PhoneNumberDelimiter> = T extends null ? LocalPhoneNumber<TDelimiter> | CountryPhoneNumber<TDelimiter> | InternationalPhoneNumber<TDelimiter> : IsStringLiteral<T> extends true ? Process$15<As<T, string>, TDelimiter> : IsNumericLiteral<T> extends true ? Process$15<`${As<T, number>}`, TDelimiter> : T extends string ? string | ErrorCondition<"invalid-phone-number"> : T extends number ? number | ErrorCondition<"invalid-phone-number"> : never;
30214
30214
  type PhoneNumberWithCountryCode = `+${PhoneCountryCode} ${string}`;
30215
30215
  type Sep = "." | " " | "-";
30216
30216
  type AreaCode = `(${number}) ` | `${number}${Sep}`;
@@ -31574,8 +31574,8 @@ interface GetUrlDynamics<T extends string> {
31574
31574
  allVars: PathAndQueryDynamics<T>;
31575
31575
  }
31576
31576
 
31577
- type Process$13<TContainer extends Container, TIndexes extends readonly string[]> = [] extends TIndexes ? TContainer : First<TIndexes> extends keyof TContainer ? TContainer[First<TIndexes>] extends Container ? Process$13<TContainer[First<TIndexes>], AfterFirst<TIndexes>> : AfterFirst<TIndexes>["length"] extends 0 ? TContainer[First<TIndexes>] : false : IsVueRef<TContainer> extends true ? First<TIndexes> extends keyof AsRef<TContainer>["value"] ? TIndexes["length"] extends 1 ? AsRef<TContainer>["value"][First<TIndexes>] : AsRef<TContainer>["value"][First<TIndexes>] extends Container ? Process$13<AsRef<TContainer>["value"][First<TIndexes>], AfterFirst<TIndexes>> : AfterFirst<TIndexes>["length"] extends 0 ? AsRef<TContainer>["value"][First<TIndexes>] : false : false : false;
31578
- type ValueAtDotPath<TValue extends Container, TPath extends string> = [IsValidDotPath<TValue, TPath>] extends [true] ? IsLiteral<TValue> extends true ? IsStringLiteral<TPath> extends true ? Split<TPath, "."> extends readonly string[] ? Process$13<TValue, Split<TPath, ".">> : never : string : string : never;
31577
+ type Process$14<TContainer extends Container, TIndexes extends readonly string[]> = [] extends TIndexes ? TContainer : First<TIndexes> extends keyof TContainer ? TContainer[First<TIndexes>] extends Container ? Process$14<TContainer[First<TIndexes>], AfterFirst<TIndexes>> : AfterFirst<TIndexes>["length"] extends 0 ? TContainer[First<TIndexes>] : false : IsVueRef<TContainer> extends true ? First<TIndexes> extends keyof AsRef<TContainer>["value"] ? TIndexes["length"] extends 1 ? AsRef<TContainer>["value"][First<TIndexes>] : AsRef<TContainer>["value"][First<TIndexes>] extends Container ? Process$14<AsRef<TContainer>["value"][First<TIndexes>], AfterFirst<TIndexes>> : AfterFirst<TIndexes>["length"] extends 0 ? AsRef<TContainer>["value"][First<TIndexes>] : false : false : false;
31578
+ type ValueAtDotPath<TValue extends Container, TPath extends string> = [IsValidDotPath<TValue, TPath>] extends [true] ? IsLiteral<TValue> extends true ? IsStringLiteral<TPath> extends true ? Split<TPath, "."> extends readonly string[] ? Process$14<TValue, Split<TPath, ".">> : never : string : string : never;
31579
31579
 
31580
31580
  /**
31581
31581
  * **VariableChar**
@@ -31735,7 +31735,7 @@ type YouTubeSubscriptionsUrl = `https://www.youtube.com/feed/subscriptions${AnyQ
31735
31735
  */
31736
31736
  type GetYouTubePageType<T> = T extends YouTubeUrl ? T extends YouTubeHome ? "home" : T extends YouTubeVideoUrl ? HasQueryParameter<T, "list"> extends true ? T extends YouTubeShareUrl ? HasQueryParameter<T, "t"> extends true ? "play::video::in-list::share-link::with-timestamp" : "play::video::in-list::share-link" : "play::video::in-list" : T extends YouTubeShareUrl ? HasQueryParameter<T, "t"> extends true ? "play::video::solo::share-link::with-timestamp" : "play::video::solo::share-link" : "play::video::solo" : T extends YouTubeCreatorUrl ? GetUrlPath<T> extends `${string}/videos` ? "creator::videos" : GetUrlPath<T> extends `${string}/playlists` ? "creator::playlists" : Last<Split<GetUrlPath<T>, "/">> extends `@${string}` ? "creator::featured" : GetUrlPath<T> extends `${string}/featured` ? "creator::featured" : "creator::other" : T extends YouTubeFeedUrl ? T extends YouTubeFeedUrl<"history"> ? "feed::history" : T extends YouTubeFeedUrl<"playlists"> ? "feed::playlists" : T extends YouTubeFeedUrl<"liked"> ? "feed::liked" : T extends YouTubeFeedUrl<"subscriptions"> ? "feed::subscriptions" : T extends YouTubeFeedUrl<"trending"> ? "feed::trending" : "feed::other" : T extends YouTubeVideosInPlaylist ? "playlist::show" : "other" : never;
31737
31737
 
31738
- type Process$12<TStr extends string, TResult extends readonly string[] = []> = IsStringLiteral<TStr> extends true ? IsEqual<TStr["length"], 0> extends true ? [] : TStr extends `${infer Char}${infer Rest}` ? Process$12<Rest, [
31738
+ type Process$13<TStr extends string, TResult extends readonly string[] = []> = IsStringLiteral<TStr> extends true ? IsEqual<TStr["length"], 0> extends true ? [] : TStr extends `${infer Char}${infer Rest}` ? Process$13<Rest, [
31739
31739
  ...TResult,
31740
31740
  Char
31741
31741
  ]> : TResult : string;
@@ -31744,10 +31744,10 @@ type Process$12<TStr extends string, TResult extends readonly string[] = []> = I
31744
31744
  *
31745
31745
  * Takes a literal string and converts it to an array of characters.
31746
31746
  */
31747
- type Chars<TStr extends string> = IsStringLiteral<TStr> extends true ? Process$12<TStr> extends readonly string[] ? Process$12<TStr> : never : readonly string[];
31747
+ type Chars<TStr extends string> = IsStringLiteral<TStr> extends true ? Process$13<TStr> extends readonly string[] ? Process$13<TStr> : never : readonly string[];
31748
31748
 
31749
31749
  type ElementLiteral<T> = [T] extends [string] ? IsStringLiteral<T> extends true ? T : string : [T] extends [number] ? IsNumericLiteral<T> extends true ? T : `${number}` : [T] extends [boolean] ? IsBooleanLiteral<T> extends true ? T : `${boolean}` : never;
31750
- type Process$11<T extends Tuple, Result extends string = ""> = [] extends T ? Result : Process$11<AfterFirst<T>, `${Result}${ElementLiteral<First<T>>}`>;
31750
+ type Process$12<T extends Tuple, Result extends string = ""> = [] extends T ? Result : Process$12<AfterFirst<T>, `${Result}${ElementLiteral<First<T>>}`>;
31751
31751
  /**
31752
31752
  * **Concat**`<T>`
31753
31753
  *
@@ -31763,7 +31763,7 @@ type Process$11<T extends Tuple, Result extends string = ""> = [] extends T ? Re
31763
31763
  *
31764
31764
  * **Related:** `Join<TArr,TWith>`
31765
31765
  */
31766
- type Concat<T extends readonly unknown[]> = Process$11<T>;
31766
+ type Concat<T extends readonly unknown[]> = Process$12<T>;
31767
31767
 
31768
31768
  type Year<T extends "strong" | "simple" = "strong"> = T extends "strong" ? `${"1" | "2"}${NumericChar}${NumericChar}${NumericChar}` : `${"1" | "2"}${number}`;
31769
31769
  type ZeroThenDigit = `0${NumericChar}`;
@@ -31995,9 +31995,9 @@ type EmptyString = "";
31995
31995
  */
31996
31996
  type EmptyStringOr<T extends string | readonly string[]> = T extends readonly string[] ? EmptyString | TupleToUnion<T & readonly string[]> : EmptyString | (T & string);
31997
31997
 
31998
- type Process$10<TContent extends string, TLeading extends string> = TContent extends `${TLeading}${string}` ? TContent : `${TLeading}${TContent}`;
31998
+ type Process$11<TContent extends string, TLeading extends string> = TContent extends `${TLeading}${string}` ? TContent : `${TLeading}${TContent}`;
31999
31999
  type IterateOver$1<TContent extends readonly (string | number)[], TLeading extends string | number> = {
32000
- [K in keyof TContent]: TContent[K] extends string ? Process$10<TContent[K], AsStringUnion<TLeading>> : TContent[K] extends number ? AsNumber<Process$10<`${TContent[K]}`, AsStringUnion<TLeading>>> : never;
32000
+ [K in keyof TContent]: TContent[K] extends string ? Process$11<TContent[K], AsStringUnion<TLeading>> : TContent[K] extends number ? AsNumber<Process$11<`${TContent[K]}`, AsStringUnion<TLeading>>> : never;
32001
32001
  };
32002
32002
  type WideContent<TContent extends string | number, TLeading extends string | number> = IsString<TContent> extends true ? `${TLeading}${string}` : number;
32003
32003
  type WideLeading<TContent extends string | number, TLeading extends string | number> = TContent extends string ? `${TLeading}${TContent}` : number;
@@ -32022,7 +32022,7 @@ type WideLeading<TContent extends string | number, TLeading extends string | num
32022
32022
  *
32023
32023
  * **Related:** `EnsureLeadingEvery`, `EnsureTrailing`, `EnsureSurround`, `Surround`
32024
32024
  */
32025
- type EnsureLeading<TContent extends string | number | readonly (string | number)[], TLeading extends string | number> = TContent extends readonly (string | number)[] ? IterateOver$1<TContent, TLeading> : IsWideType<TContent> extends true ? WideContent<As<TContent, string | number>, TLeading> : IsWideType<TLeading> extends true ? WideLeading<As<TContent, string | number>, TLeading> : TContent extends string ? Process$10<TContent, AsStringUnion<TLeading>> : TContent extends number ? AsNumber<Process$10<`${TContent}`, AsStringUnion<TLeading>>> : never;
32025
+ type EnsureLeading<TContent extends string | number | readonly (string | number)[], TLeading extends string | number> = TContent extends readonly (string | number)[] ? IterateOver$1<TContent, TLeading> : IsWideType<TContent> extends true ? WideContent<As<TContent, string | number>, TLeading> : IsWideType<TLeading> extends true ? WideLeading<As<TContent, string | number>, TLeading> : TContent extends string ? Process$11<TContent, AsStringUnion<TLeading>> : TContent extends number ? AsNumber<Process$11<`${TContent}`, AsStringUnion<TLeading>>> : never;
32026
32026
 
32027
32027
  /**
32028
32028
  * **EnsureLeadingEvery**`<TList, TLeader>`
@@ -32177,9 +32177,9 @@ type _FindIndexesWithMeta__Tuple<TOriginal extends readonly unknown[], TContent
32177
32177
  */
32178
32178
  type FindIndexesWithMeta<TContent extends string | readonly unknown[], TFind, TOp extends ComparatorOperation = "extends"> = TContent extends string ? _FindIndexesWithMeta__String<Chars<TContent>, Chars<TContent>, TFind, TOp> : TContent extends readonly unknown[] ? _FindIndexesWithMeta__Tuple<TContent, TContent, TFind, TOp> : never;
32179
32179
 
32180
- type Process$$<TContent extends string> = First<Chars<TContent>>;
32180
+ type Process$10<TContent extends string> = First<Chars<TContent>>;
32181
32181
  type Iterate$5<TContent extends readonly string[]> = {
32182
- [K in keyof TContent]: Process$$<TContent[K]>;
32182
+ [K in keyof TContent]: Process$10<TContent[K]>;
32183
32183
  };
32184
32184
  /**
32185
32185
  * **FirstChar**`<TContent>`
@@ -32194,7 +32194,7 @@ type Iterate$5<TContent extends readonly string[]> = {
32194
32194
  *
32195
32195
  * **Related:** `LastChar`, `AfterFirstChar`
32196
32196
  */
32197
- type FirstChar<TContent extends string | readonly string[]> = TContent extends readonly string[] ? Iterate$5<TContent> : TContent extends string ? string extends TContent ? string : Process$$<TContent> : never;
32197
+ type FirstChar<TContent extends string | readonly string[]> = TContent extends readonly string[] ? Iterate$5<TContent> : TContent extends string ? string extends TContent ? string : Process$10<TContent> : never;
32198
32198
 
32199
32199
  type UsStateLookup = Mutable<typeof US_STATE_LOOKUP>;
32200
32200
  type UsProvinceLookup = Mutable<typeof US_STATE_LOOKUP_PROVINCES>;
@@ -32290,9 +32290,9 @@ type HasUppercase<T extends string> = string extends T ? "unknown" : T extends `
32290
32290
  */
32291
32291
  type IsCapitalized<T extends string> = string extends T ? "unknown" : T extends Capitalize<T> ? true : false;
32292
32292
 
32293
- type Process$_<TContent extends string> = Last<Chars<TContent>>;
32293
+ type Process$$<TContent extends string> = Last<Chars<TContent>>;
32294
32294
  type Iterate$4<TContent extends readonly string[]> = {
32295
- [K in keyof TContent]: Process$_<TContent[K]>;
32295
+ [K in keyof TContent]: Process$$<TContent[K]>;
32296
32296
  };
32297
32297
  /**
32298
32298
  * **LastChar**`<TContent>`
@@ -32307,7 +32307,7 @@ type Iterate$4<TContent extends readonly string[]> = {
32307
32307
  *
32308
32308
  * **Related:** `FirstChar`, `AfterFirstChar`
32309
32309
  */
32310
- type LastChar<TContent extends string | readonly string[]> = TContent extends readonly string[] ? Iterate$4<TContent> : TContent extends string ? string extends TContent ? string : Process$_<TContent> : never;
32310
+ type LastChar<TContent extends string | readonly string[]> = TContent extends readonly string[] ? Iterate$4<TContent> : TContent extends string ? string extends TContent ? string : Process$$<TContent> : never;
32311
32311
 
32312
32312
  type AccelerationMetricsLookup = typeof ACCELERATION_METRICS_LOOKUP;
32313
32313
  /**
@@ -32871,7 +32871,7 @@ type TypeStrength = "strong" | "simple";
32871
32871
  type StripSlash<T extends readonly string[]> = {
32872
32872
  [K in keyof T]: T[K] extends `/${infer Middle}/` ? Middle : T[K] extends `/${infer Trailing}` ? Trailing : T[K] extends `${infer Leading}/` ? Leading : T[K];
32873
32873
  };
32874
- type Process$Z<TPath extends string, TFirst extends string, TLast extends string> = TFirst extends `/${string}` ? TLast extends `${string}/` ? `/${TPath}/` : `/${TPath}` : TLast extends `${string}/` ? `${TPath}/` : TPath;
32874
+ type Process$_<TPath extends string, TFirst extends string, TLast extends string> = TFirst extends `/${string}` ? TLast extends `${string}/` ? `/${TPath}/` : `/${TPath}` : TLast extends `${string}/` ? `${TPath}/` : TPath;
32875
32875
  /**
32876
32876
  * **PathJoin**`<T,U>`
32877
32877
  *
@@ -32885,7 +32885,7 @@ type Process$Z<TPath extends string, TFirst extends string, TLast extends string
32885
32885
  * `EnsureStarting<T>`, and `StripStarting<T>` to further shape
32886
32886
  * the type.
32887
32887
  */
32888
- type PathJoin<TSegments extends readonly string[]> = StripSlash<TSegments> extends readonly string[] ? Process$Z<Join<StripSlash<TSegments>, "/">, First<TSegments>, Last<TSegments>> : never;
32888
+ type PathJoin<TSegments extends readonly string[]> = StripSlash<TSegments> extends readonly string[] ? Process$_<Join<StripSlash<TSegments>, "/">, First<TSegments>, Last<TSegments>> : never;
32889
32889
 
32890
32890
  type ExceptionLookup = typeof PLURAL_EXCEPTIONS;
32891
32891
  type SingularNoun = "s" | "sh" | "ch" | "x" | "z" | "o";
@@ -32987,7 +32987,7 @@ type RetainAfterLast<TStr extends string, TBreak extends string, TInclude extend
32987
32987
  TBreak
32988
32988
  ], TStr extends `${string}${infer Break extends TBreak}${infer REST}` ? If<IsTrue<TInclude>, `${Break}${REST}`, `${REST}`> : TStr, string>;
32989
32989
 
32990
- type Process$Y<TChars extends readonly string[], TOp extends "is" | "not", TComparator extends string, TInclude extends boolean = false, TResult extends string = ""> = [] extends TChars ? TResult : First<TChars> extends TComparator ? TOp extends "is" ? Process$Y<AfterFirst<TChars>, TOp, TComparator, TInclude, `${TResult}${First<TChars>}`> : If<TInclude, `${TResult}${First<TChars>}`, TResult> : TOp extends "is" ? If<TInclude, `${TResult}${First<TChars>}`, TResult> : Process$Y<AfterFirst<TChars>, TOp, TComparator, TInclude, `${TResult}${First<TChars>}`>;
32990
+ type Process$Z<TChars extends readonly string[], TOp extends "is" | "not", TComparator extends string, TInclude extends boolean = false, TResult extends string = ""> = [] extends TChars ? TResult : First<TChars> extends TComparator ? TOp extends "is" ? Process$Z<AfterFirst<TChars>, TOp, TComparator, TInclude, `${TResult}${First<TChars>}`> : If<TInclude, `${TResult}${First<TChars>}`, TResult> : TOp extends "is" ? If<TInclude, `${TResult}${First<TChars>}`, TResult> : Process$Z<AfterFirst<TChars>, TOp, TComparator, TInclude, `${TResult}${First<TChars>}`>;
32991
32991
  /**
32992
32992
  * **RetainUntil**`<TContent,TComparator>`
32993
32993
  *
@@ -33001,7 +33001,7 @@ type Process$Y<TChars extends readonly string[], TOp extends "is" | "not", TComp
33001
33001
  *
33002
33002
  * **Related:** `RetainWhile`
33003
33003
  */
33004
- type RetainUntil<TContent extends string, TComparator extends string, TInclude extends boolean = false> = Process$Y<Chars<TContent>, "not", TComparator, TInclude>;
33004
+ type RetainUntil<TContent extends string, TComparator extends string, TInclude extends boolean = false> = Process$Z<Chars<TContent>, "not", TComparator, TInclude>;
33005
33005
  /**
33006
33006
  * **RetainWhile**`<TContent,TComparator>`
33007
33007
  *
@@ -33015,7 +33015,7 @@ type RetainUntil<TContent extends string, TComparator extends string, TInclude e
33015
33015
  *
33016
33016
  * **Related:** `RetainUntil`
33017
33017
  */
33018
- type RetainWhile<TContent extends string, TComparator extends string> = Process$Y<Chars<TContent>, "is", TComparator>;
33018
+ type RetainWhile<TContent extends string, TComparator extends string> = Process$Z<Chars<TContent>, "is", TComparator>;
33019
33019
 
33020
33020
  type Policy = "omit" | "before" | "after";
33021
33021
  type Postfix<T extends string> = ["postfix", T];
@@ -33032,7 +33032,7 @@ type EachBlock<TContent extends readonly (string | Postfix<string>)[], TSep exte
33032
33032
  First<TContent>
33033
33033
  ]>;
33034
33034
  type Iterate$3<TContent extends readonly (string | Postfix<string>)[], TSep extends readonly string[], TPolicy extends Policy> = [] extends TSep ? FixPostfix<Filter<TContent, "", "equals">> : Iterate$3<EachBlock<TContent, First<TSep>, TPolicy>, AfterFirst<TSep>, TPolicy>;
33035
- type Process$X<TContent extends string, TSep extends string | readonly string[], TPolicy extends Policy = "omit"> = IsLiteral<TSep> extends true ? TSep extends "" ? ErrMsg<"invalid-separator", `Split<T>: an empty string was used as a separator. Use Chars<T> if you want to split a string into characters!`> : TSep extends readonly string[] ? Iterate$3<[TContent], TSep, TPolicy> : TSep extends string ? Convert$3<TContent, TSep, TPolicy> extends readonly (string | Postfix<string>)[] ? FixPostfix<Convert$3<TContent, TSep, TPolicy>> : never : never : never;
33035
+ type Process$Y<TContent extends string, TSep extends string | readonly string[], TPolicy extends Policy = "omit"> = IsLiteral<TSep> extends true ? TSep extends "" ? ErrMsg<"invalid-separator", `Split<T>: an empty string was used as a separator. Use Chars<T> if you want to split a string into characters!`> : TSep extends readonly string[] ? Iterate$3<[TContent], TSep, TPolicy> : TSep extends string ? Convert$3<TContent, TSep, TPolicy> extends readonly (string | Postfix<string>)[] ? FixPostfix<Convert$3<TContent, TSep, TPolicy>> : never : never : never;
33036
33036
  /**
33037
33037
  * **Split**`<TContent,TSep,[TPolicy]>`
33038
33038
  *
@@ -33047,7 +33047,7 @@ type Process$X<TContent extends string, TSep extends string | readonly string[],
33047
33047
  * than `SplitAlt` but there are instances where `SplitAlt` is more performant
33048
33048
  * in inference.
33049
33049
  */
33050
- type Split<TContent extends string, TSep extends string | readonly string[], TPolicy extends Policy = "omit"> = IsStringLiteral<TContent> extends true ? IsUnion<TSep> extends true ? UnionToTuple$1<TSep> extends readonly string[] ? Split<TContent, UnionToTuple$1<TSep>, TPolicy> : ErrMsg<"invalid-union"> : Process$X<TContent, TSep, TPolicy> : string[];
33050
+ type Split<TContent extends string, TSep extends string | readonly string[], TPolicy extends Policy = "omit"> = IsStringLiteral<TContent> extends true ? IsUnion<TSep> extends true ? UnionToTuple$1<TSep> extends readonly string[] ? Split<TContent, UnionToTuple$1<TSep>, TPolicy> : ErrMsg<"invalid-union"> : Process$Y<TContent, TSep, TPolicy> : string[];
33051
33051
 
33052
33052
  type UnionPolicy = "omit" | "include";
33053
33053
  type UnionSplit<TContent extends readonly string[], TSep extends string, TUnionPolicy extends UnionPolicy, TResult extends readonly string[] = []> = [] extends TContent ? TResult : UnionSplit<AfterFirst<TContent>, // advance to next character
@@ -33062,8 +33062,8 @@ type LiteralSplit<TContent extends string, TSep extends string, TUnionPolicy ext
33062
33062
  ...TResults,
33063
33063
  TUnionPolicy extends "omit" ? Block : `${Block}${TSep}`
33064
33064
  ]> : Filter<[...TResults, TContent], "">;
33065
- type Process$W<TContent extends string, TSep extends string | readonly string[], TUnionPolicy extends UnionPolicy = "omit"> = IsWideType<TContent> extends true ? string : TSep extends readonly string[] ? TupleToUnion<TSep> extends string ? Chars<TContent> extends readonly string[] ? UnionSplit<Chars<TContent>, TupleToUnion<TSep>, TUnionPolicy> : never : never : TSep extends string ? LiteralSplit<TContent, TSep, TUnionPolicy> : never;
33066
- type PreProcess$1<TContent extends string, TSep extends string | readonly string[], TUnionPolicy extends UnionPolicy = "omit"> = IsUnion<TSep> extends true ? UnionToTuple$1<TSep> extends readonly string[] ? Process$W<TContent, UnionToTuple$1<TSep>, TUnionPolicy> : never : Process$W<TContent, TSep, TUnionPolicy>;
33065
+ type Process$X<TContent extends string, TSep extends string | readonly string[], TUnionPolicy extends UnionPolicy = "omit"> = IsWideType<TContent> extends true ? string : TSep extends readonly string[] ? TupleToUnion<TSep> extends string ? Chars<TContent> extends readonly string[] ? UnionSplit<Chars<TContent>, TupleToUnion<TSep>, TUnionPolicy> : never : never : TSep extends string ? LiteralSplit<TContent, TSep, TUnionPolicy> : never;
33066
+ type PreProcess$1<TContent extends string, TSep extends string | readonly string[], TUnionPolicy extends UnionPolicy = "omit"> = IsUnion<TSep> extends true ? UnionToTuple$1<TSep> extends readonly string[] ? Process$X<TContent, UnionToTuple$1<TSep>, TUnionPolicy> : never : Process$X<TContent, TSep, TUnionPolicy>;
33067
33067
  /**
33068
33068
  * **SplitAlt**`<TContent,TSep,[TPolicy]>`
33069
33069
  *
@@ -33103,7 +33103,7 @@ type StripAfter<TStr extends string, TBreak extends string> = IsStringLiteral<TS
33103
33103
  */
33104
33104
  type StripBefore<TStr extends string, TBreak extends string> = IsStringLiteral<TStr> extends true ? IsStringLiteral<TBreak> extends true ? TStr extends `${string}${TBreak}${infer REST}` ? `${REST}` : TStr : string : string;
33105
33105
 
33106
- type Process$V<TContent extends string, TStrip extends string> = And<[IsStringLiteral<TContent>, IsStringLiteral<TStrip>]> extends true ? TContent extends `${TStrip & string}${infer After}` ? After : TContent : string;
33106
+ type Process$W<TContent extends string, TStrip extends string> = And<[IsStringLiteral<TContent>, IsStringLiteral<TStrip>]> extends true ? TContent extends `${TStrip & string}${infer After}` ? After : TContent : string;
33107
33107
  /**
33108
33108
  * **StripLeading**`<T, U>`
33109
33109
  *
@@ -33120,9 +33120,9 @@ type Process$V<TContent extends string, TStrip extends string> = And<[IsStringLi
33120
33120
  * - if `T` is a non-string type then no transformation will be done
33121
33121
  * - same applies to `U`
33122
33122
  */
33123
- type StripLeading<TContent extends string | number, TStrip extends string | number> = TContent extends number ? AsNumber<Process$V<`${TContent}`, AsStringUnion<TStrip>>> : TContent extends string ? Process$V<TContent, AsStringUnion<TStrip>> : never;
33123
+ type StripLeading<TContent extends string | number, TStrip extends string | number> = TContent extends number ? AsNumber<Process$W<`${TContent}`, AsStringUnion<TStrip>>> : TContent extends string ? Process$W<TContent, AsStringUnion<TStrip>> : never;
33124
33124
 
33125
- type Process$U<TContent extends string, TSurround extends string> = TContent extends `${TSurround}${infer REMAIN}` ? REMAIN extends `${infer LEADING}${TSurround}` ? LEADING : REMAIN : TContent extends `${infer LEADING}${TSurround}` ? LEADING : TContent;
33125
+ type Process$V<TContent extends string, TSurround extends string> = TContent extends `${TSurround}${infer REMAIN}` ? REMAIN extends `${infer LEADING}${TSurround}` ? LEADING : REMAIN : TContent extends `${infer LEADING}${TSurround}` ? LEADING : TContent;
33126
33126
  /**
33127
33127
  * **StripSurround**`<TContent, TSurround>`
33128
33128
  *
@@ -33134,9 +33134,9 @@ type Process$U<TContent extends string, TSurround extends string> = TContent ext
33134
33134
  * type Hello = StripSurround<"(Hi there)", "(" | ")">;
33135
33135
  * ```
33136
33136
  */
33137
- type StripSurround<TContent extends string | number, TSurround extends string | number> = IsWideType<TContent> extends true ? TContent : TContent extends string ? Process$U<TContent, AsStringUnion<TSurround>> : AsNumber<Process$U<`${TContent}`, AsStringUnion<TSurround>>>;
33137
+ type StripSurround<TContent extends string | number, TSurround extends string | number> = IsWideType<TContent> extends true ? TContent : TContent extends string ? Process$V<TContent, AsStringUnion<TSurround>> : AsNumber<Process$V<`${TContent}`, AsStringUnion<TSurround>>>;
33138
33138
 
33139
- type Process$T<TContent extends string, TStrip extends string> = And<[IsStringLiteral<TContent>, IsStringLiteral<TStrip>]> extends true ? TContent extends `${infer Before}${TStrip}` ? Before : TContent : string;
33139
+ type Process$U<TContent extends string, TStrip extends string> = And<[IsStringLiteral<TContent>, IsStringLiteral<TStrip>]> extends true ? TContent extends `${infer Before}${TStrip}` ? Before : TContent : string;
33140
33140
  /**
33141
33141
  * **StripEnding**`<TContent, TStrip>`
33142
33142
  *
@@ -33150,23 +33150,23 @@ type Process$T<TContent extends string, TStrip extends string> = And<[IsStringLi
33150
33150
  * type R = StripEnding<T,U>;
33151
33151
  * ```
33152
33152
  */
33153
- type StripTrailing<TContent extends string | number, TStrip extends string | number> = TContent extends number ? AsNumber<Process$T<`${TContent}`, `${TStrip}`> extends `${number}` ? Process$T<`${TContent}`, `${TStrip}`> : never> : TContent extends string ? Process$T<`${TContent}`, `${TStrip}`> extends string ? Process$T<`${TContent}`, `${TStrip}`> : never : never;
33153
+ type StripTrailing<TContent extends string | number, TStrip extends string | number> = TContent extends number ? AsNumber<Process$U<`${TContent}`, `${TStrip}`> extends `${number}` ? Process$U<`${TContent}`, `${TStrip}`> : never> : TContent extends string ? Process$U<`${TContent}`, `${TStrip}`> extends string ? Process$U<`${TContent}`, `${TStrip}`> : never : never;
33154
33154
 
33155
- type Process$S<TChars extends readonly string[], TOp extends "is" | "not", TComparator extends string, TResult extends string> = [] extends TChars ? TResult : First<TChars> extends TComparator ? TOp extends "is" ? Process$S<AfterFirst<TChars>, TOp, TComparator, Shift<TResult> extends string ? Shift<TResult> : ""> : TResult : TOp extends "is" ? TResult : Process$S<AfterFirst<TChars>, TOp, TComparator, Shift<TResult> extends string ? Shift<TResult> : "">;
33155
+ type Process$T<TChars extends readonly string[], TOp extends "is" | "not", TComparator extends string, TResult extends string> = [] extends TChars ? TResult : First<TChars> extends TComparator ? TOp extends "is" ? Process$T<AfterFirst<TChars>, TOp, TComparator, Shift<TResult> extends string ? Shift<TResult> : ""> : TResult : TOp extends "is" ? TResult : Process$T<AfterFirst<TChars>, TOp, TComparator, Shift<TResult> extends string ? Shift<TResult> : "">;
33156
33156
  /**
33157
33157
  * **StripUntil**`<TContent,TComparator>`
33158
33158
  *
33159
33159
  * Strip characters from the start of `TContent` _until_ a
33160
33160
  * character extends `TComparator`.
33161
33161
  */
33162
- type StripUntil<TContent extends string, TComparator extends string> = Process$S<Chars<TContent>, "not", TComparator, TContent>;
33162
+ type StripUntil<TContent extends string, TComparator extends string> = Process$T<Chars<TContent>, "not", TComparator, TContent>;
33163
33163
  /**
33164
33164
  * **StripWhile**`<TContent,TComparator>`
33165
33165
  *
33166
33166
  * Strip characters from the start of `TContent` _while_ those
33167
33167
  * characters extend `TComparator`.
33168
33168
  */
33169
- type StripWhile<TContent extends string, TComparator extends string> = Process$S<Chars<TContent>, "is", TComparator, TContent>;
33169
+ type StripWhile<TContent extends string, TComparator extends string> = Process$T<Chars<TContent>, "is", TComparator, TContent>;
33170
33170
 
33171
33171
  type Compute<TStr extends string, TLen extends Tuple = []> = TStr extends `${infer _Char}${infer Rest}` ? Compute<Rest, [...TLen, unknown]> : TLen["length"];
33172
33172
  /**
@@ -33177,9 +33177,9 @@ type Compute<TStr extends string, TLen extends Tuple = []> = TStr extends `${inf
33177
33177
  */
33178
33178
  type StrLen<T extends string> = Compute<T>;
33179
33179
 
33180
- type Process$R<TContent extends string, TPrefix extends string, TPostfix extends string> = `${TPrefix}${TContent}${TPostfix}`;
33180
+ type Process$S<TContent extends string, TPrefix extends string, TPostfix extends string> = `${TPrefix}${TContent}${TPostfix}`;
33181
33181
  type ProcessEach<TContent extends readonly string[], TPrefix extends string, TPostfix extends string> = {
33182
- [K in keyof TContent]: Process$R<TContent[K], TPrefix, TPostfix>;
33182
+ [K in keyof TContent]: Process$S<TContent[K], TPrefix, TPostfix>;
33183
33183
  };
33184
33184
  /**
33185
33185
  * **Surround**`<TContent,TPrefix,TPostfix>`
@@ -33194,7 +33194,7 @@ type ProcessEach<TContent extends readonly string[], TPrefix extends string, TPo
33194
33194
  * type T2 = Surround<["one","two"], "<",">">;
33195
33195
  * ```
33196
33196
  */
33197
- type Surround<TContent extends string | number | readonly (string | number)[], TPrefix extends string, TPostfix extends string> = TContent extends number ? Surround<`${TContent}`, TPrefix, TPostfix> : TContent extends readonly unknown[] ? TContent extends readonly string[] ? ProcessEach<TContent, TPrefix, TPostfix> : ProcessEach<ToStringArray<TContent> extends readonly string[] ? ToStringArray<TContent> : never, TPrefix, TPostfix> : TContent extends string ? Process$R<TContent, TPrefix, TPostfix> : never;
33197
+ type Surround<TContent extends string | number | readonly (string | number)[], TPrefix extends string, TPostfix extends string> = TContent extends number ? Surround<`${TContent}`, TPrefix, TPostfix> : TContent extends readonly unknown[] ? TContent extends readonly string[] ? ProcessEach<TContent, TPrefix, TPostfix> : ProcessEach<ToStringArray<TContent> extends readonly string[] ? ToStringArray<TContent> : never, TPrefix, TPostfix> : TContent extends string ? Process$S<TContent, TPrefix, TPostfix> : never;
33198
33198
 
33199
33199
  type CivilianTwoDigitHour = "10" | "11" | "12";
33200
33200
  type TimeResolution = "HH:MM" | "HH:MM:SS" | "HH:MM:SS.ms";
@@ -33410,7 +33410,7 @@ type TypeSubtype = `${string}/${string}` & {
33410
33410
  brand: "type-subtype";
33411
33411
  };
33412
33412
 
33413
- type Process$Q<T> = T extends NumberLike ? AsNumber<T> : T extends BooleanLike ? AsBoolean<T> : T;
33413
+ type Process$R<T> = T extends NumberLike ? AsNumber<T> : T extends BooleanLike ? AsBoolean<T> : T;
33414
33414
  /**
33415
33415
  * **UnderlyingType**`<T>`
33416
33416
  *
@@ -33423,8 +33423,8 @@ type Process$Q<T> = T extends NumberLike ? AsNumber<T> : T extends BooleanLike ?
33423
33423
  * In all other cases it simply proxies the type of `T` through.
33424
33424
  */
33425
33425
  type UnderlyingType<T> = T extends readonly unknown[] ? {
33426
- [K in keyof T]: Process$Q<T[K]>;
33427
- } : Process$Q<T>;
33426
+ [K in keyof T]: Process$R<T[K]>;
33427
+ } : Process$R<T>;
33428
33428
 
33429
33429
  /**
33430
33430
  * **JsonValue**`<T>`
@@ -33476,7 +33476,7 @@ type MergeTuplesAcc<TDefault extends readonly unknown[], TOverride extends reado
33476
33476
  * - if `TDefault` is longer than `TOverride` then `TDefault` will be extended
33477
33477
  */
33478
33478
  type MergeTuples<TDefault extends readonly Narrowable[], TOverride extends readonly Narrowable[], TKey extends string | false = false> = MergeTuplesAcc<[...TDefault], [...TOverride], TKey>;
33479
- type Process$P<TDefault, TOverride> = And<[
33479
+ type Process$Q<TDefault, TOverride> = And<[
33480
33480
  DoesExtend<TDefault, Dictionary | Nothing>,
33481
33481
  DoesExtend<TOverride, Dictionary | Nothing>
33482
33482
  ]> extends true ? MergeObjects<AsDictionary<TDefault>, AsDictionary<TOverride>> : And<[
@@ -33493,14 +33493,14 @@ type Process$P<TDefault, TOverride> = And<[
33493
33493
  *
33494
33494
  * **Related:** `MergeObjects`, `MergeScalars`, `MergeTuples`
33495
33495
  */
33496
- type Merge<TDefault, TOverride> = AreSameType<TDefault, TOverride> extends true ? Process$P<TDefault, TOverride> : Or<[
33496
+ type Merge<TDefault, TOverride> = AreSameType<TDefault, TOverride> extends true ? Process$Q<TDefault, TOverride> : Or<[
33497
33497
  IsNothing<TDefault>,
33498
33498
  IsNothing<TOverride>
33499
33499
  ]> extends true ? And<[IsNothing<TDefault>, IsNothing<TOverride>]> extends true ? Throw<"invalid-merge", `Merge<TDef,TOver> received two empty values; at least one needs to have a value!`, "Merge", {
33500
33500
  library: "inferred-types/constants";
33501
33501
  TDef: TDefault;
33502
33502
  TOver: TOverride;
33503
- }> : Process$P<TDefault, TOverride> : Throw<"invalid-merge", `the Merge<TDef,TOver> utility can merge various types but both types must be of the same base type and they were not!`, "Merge", {
33503
+ }> : Process$Q<TDefault, TOverride> : Throw<"invalid-merge", `the Merge<TDef,TOver> utility can merge various types but both types must be of the same base type and they were not!`, "Merge", {
33504
33504
  library: "inferred-types/constants";
33505
33505
  TDef: TDefault;
33506
33506
  TOver: TOverride;
@@ -33542,7 +33542,7 @@ type Immutable<T extends {
33542
33542
  } ? Immutable<T[key]> : T[key];
33543
33543
  };
33544
33544
 
33545
- type Process$O<TSource extends AnyObject, TKeys extends readonly (ObjectKey & keyof TSource)[], TTuple extends readonly KeyValue[] = []> = [] extends TKeys ? TTuple : Process$O<TSource, AfterFirst<TKeys>, [
33545
+ type Process$P<TSource extends AnyObject, TKeys extends readonly (ObjectKey & keyof TSource)[], TTuple extends readonly KeyValue[] = []> = [] extends TKeys ? TTuple : Process$P<TSource, AfterFirst<TKeys>, [
33546
33546
  ...TTuple,
33547
33547
  {
33548
33548
  key: First<TKeys>;
@@ -33566,10 +33566,10 @@ type Compact<TSource extends AnyObject, TKeys extends readonly (ObjectKey & keyo
33566
33566
  * type C = ObjectToTuple< foo: 1 }, true>;
33567
33567
  * ```
33568
33568
  */
33569
- 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$O<TObj, As<Keys<TObj>, readonly (ObjectKey & keyof TObj)[]>> : Compact<TObj, As<Keys<TObj>, readonly (ObjectKey & keyof TObj)[]>>;
33569
+ 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
33570
 
33571
33571
  type Prefix$2<T extends boolean> = T extends true ? "\n " : "";
33572
- type Process$N<T extends readonly Record<ObjectKey, any>[], E extends boolean> = Join<{
33572
+ type Process$O<T extends readonly Record<ObjectKey, any>[], E extends boolean> = Join<{
33573
33573
  [K in keyof T]: T[K] extends Record<infer Key extends string, infer Value> ? `${Prefix$2<E>}${Key}: ${AsString<Value>}` : never;
33574
33574
  }, "; ">;
33575
33575
  /**
@@ -33579,9 +33579,9 @@ type Process$N<T extends readonly Record<ObjectKey, any>[], E extends boolean> =
33579
33579
  *
33580
33580
  * **Related:** `ObjectToJsString`, `ObjectToJsonString`, `ObjectToTuple`
33581
33581
  */
33582
- type ObjectToCssString<TObj extends AnyObject, TExpand extends boolean = false> = TObj extends ExplicitlyEmptyObject ? "{}" : IsWideContainer<TObj> extends true ? string : Surround<Process$N<ObjectToTuple<TObj, true>, false>, TExpand extends false ? "{ " : "{", TExpand extends false ? " }" : "\n}">;
33582
+ type ObjectToCssString<TObj extends AnyObject, TExpand extends boolean = false> = TObj extends ExplicitlyEmptyObject ? "{}" : IsWideContainer<TObj> extends true ? string : Surround<Process$O<ObjectToTuple<TObj, true>, false>, TExpand extends false ? "{ " : "{", TExpand extends false ? " }" : "\n}">;
33583
33583
 
33584
- type Process$M<T extends readonly Record<ObjectKey, any>[]> = Join<{
33584
+ type Process$N<T extends readonly Record<ObjectKey, any>[]> = Join<{
33585
33585
  [K in keyof T]: T[K] extends Record<infer Key extends string, infer Value> ? `${Surround<Key, `"`, `"`>}: ${Value extends string ? `"${Value}"` : `${AsString<Value>}`}` : never;
33586
33586
  }, ", ">;
33587
33587
  /**
@@ -33591,10 +33591,10 @@ type Process$M<T extends readonly Record<ObjectKey, any>[]> = Join<{
33591
33591
  *
33592
33592
  * **Related:** `ObjectToCssString`, `ObjectToJsString`, `ObjectToTuple`
33593
33593
  */
33594
- type ObjectToJsonString<TObj extends AnyObject> = TObj extends ExplicitlyEmptyObject ? "{}" : IsWideContainer<TObj> extends true ? string : Surround<Process$M<ObjectToTuple<TObj, true>>, "{ ", " }">;
33594
+ type ObjectToJsonString<TObj extends AnyObject> = TObj extends ExplicitlyEmptyObject ? "{}" : IsWideContainer<TObj> extends true ? string : Surround<Process$N<ObjectToTuple<TObj, true>>, "{ ", " }">;
33595
33595
 
33596
33596
  type Prefix$1<T extends boolean> = T extends true ? "\n " : "";
33597
- type Process$L<T extends readonly Record<ObjectKey, any>[], E extends boolean> = Join<{
33597
+ type Process$M<T extends readonly Record<ObjectKey, any>[], E extends boolean> = Join<{
33598
33598
  [K in keyof T]: T[K] extends Record<infer Key extends string, infer Value> ? `${Prefix$1<E>}${Key}: ${Value extends string ? `"${Value}"` : `${AsString<Value>}`}` : never;
33599
33599
  }, ", ">;
33600
33600
  /**
@@ -33604,10 +33604,10 @@ type Process$L<T extends readonly Record<ObjectKey, any>[], E extends boolean> =
33604
33604
  *
33605
33605
  * **Related:** `ObjectToCssString`, `ObjectToJsonString`, `ObjectToTuple`
33606
33606
  */
33607
- type ObjectToJsString<TObj extends AnyObject, TExpand extends boolean = false> = TObj extends ExplicitlyEmptyObject ? "{}" : IsWideContainer<TObj> extends true ? string : Surround<Process$L<ObjectToTuple<TObj, true>, TExpand>, "{ ", " }">;
33607
+ type ObjectToJsString<TObj extends AnyObject, TExpand extends boolean = false> = TObj extends ExplicitlyEmptyObject ? "{}" : IsWideContainer<TObj> extends true ? string : Surround<Process$M<ObjectToTuple<TObj, true>, TExpand>, "{ ", " }">;
33608
33608
 
33609
33609
  type Prefix<T extends boolean> = T extends true ? "\n " : "";
33610
- type Process$K<T extends readonly Record<ObjectKey, any>[], E extends boolean> = Join<{
33610
+ type Process$L<T extends readonly Record<ObjectKey, any>[], E extends boolean> = Join<{
33611
33611
  [K in keyof T]: T[K] extends Record<infer Key extends string, infer Value> ? Value extends AnyObject ? `${Prefix<E>}${Key} ${AsString<Value>}` : never : never;
33612
33612
  }, "\n ">;
33613
33613
  /**
@@ -33617,7 +33617,7 @@ type Process$K<T extends readonly Record<ObjectKey, any>[], E extends boolean> =
33617
33617
  *
33618
33618
  * **Related:** `ObjectToJsString`, `ObjectToJsonString`, `ObjectToTuple`, `ObjectToCssString`
33619
33619
  */
33620
- type ObjectToKeyframeString<TObj extends AnyObject, TExpand extends boolean = false> = TObj extends ExplicitlyEmptyObject ? "{}" : IsWideContainer<TObj> extends true ? string : Surround<Process$K<ObjectToTuple<TObj, true>, false>, TExpand extends false ? "{ " : "{\n ", TExpand extends false ? " }" : "\n}">;
33620
+ type ObjectToKeyframeString<TObj extends AnyObject, TExpand extends boolean = false> = TObj extends ExplicitlyEmptyObject ? "{}" : IsWideContainer<TObj> extends true ? string : Surround<Process$L<ObjectToTuple<TObj, true>, false>, TExpand extends false ? "{ " : "{\n ", TExpand extends false ? " }" : "\n}">;
33621
33621
 
33622
33622
  type ProcessTuple$3<TArray extends readonly unknown[] | unknown[], TResults extends readonly unknown[] = []> = [
33623
33623
  ] extends TArray ? TResults : First<TArray> extends TypedFunction ? ProcessTuple$3<AfterFirst<TArray>, [...TResults, ReturnType<First<TArray>>]> : ProcessTuple$3<AfterFirst<TArray>, [...TResults, First<TArray>]>;
@@ -33687,9 +33687,9 @@ type RemoveIndex<T extends Record<any, any>> = {
33687
33687
  */
33688
33688
  type Replace<TText extends string, TFind extends string, TReplace extends string> = TText extends "" ? If<IsEqual<TFind, "">, TReplace, ""> : TFind extends "" ? TText : TText extends `${infer F}${TFind}${infer E}` ? `${F}${TReplace}${E}` : TText;
33689
33689
 
33690
- type Process$J<TText extends string, TFind extends string, TReplace extends string> = Replace<TText, TFind, TReplace> extends `${string}${TFind}${string}` ? Process$J<Replace<TText, TFind, TReplace>, TFind, TReplace> : Replace<TText, TFind, TReplace>;
33691
- type Iterate$2<TText extends string, TFind extends readonly string[], TReplace extends string> = [] extends TFind ? TText : Iterate$2<Process$J<TText, First<TFind>, TReplace>, AfterFirst<TFind>, TReplace>;
33692
- type Singular<TText extends string, TFind extends string, TReplace extends string> = IsStringLiteral<TText> extends true ? IsStringLiteral<TFind> extends true ? IsUnion<TFind> extends true ? UnionToTuple$1<TFind> extends readonly string[] ? Iterate$2<TText, UnionToTuple$1<TFind>, TReplace> : never : Process$J<TText, TFind, TReplace> : string : string;
33690
+ type Process$K<TText extends string, TFind extends string, TReplace extends string> = Replace<TText, TFind, TReplace> extends `${string}${TFind}${string}` ? Process$K<Replace<TText, TFind, TReplace>, TFind, TReplace> : Replace<TText, TFind, TReplace>;
33691
+ type Iterate$2<TText extends string, TFind extends readonly string[], TReplace extends string> = [] extends TFind ? TText : Iterate$2<Process$K<TText, First<TFind>, TReplace>, AfterFirst<TFind>, TReplace>;
33692
+ type Singular<TText extends string, TFind extends string, TReplace extends string> = IsStringLiteral<TText> extends true ? IsStringLiteral<TFind> extends true ? IsUnion<TFind> extends true ? UnionToTuple$1<TFind> extends readonly string[] ? Iterate$2<TText, UnionToTuple$1<TFind>, TReplace> : never : Process$K<TText, TFind, TReplace> : string : string;
33693
33693
  type Multiple<TText extends readonly string[], TFind extends string, TReplace extends string, TResult extends readonly string[] = []> = [] extends TText ? TResult : Multiple<AfterFirst<TText>, TFind, TReplace, [
33694
33694
  ...TResult,
33695
33695
  ReplaceAll<First<TText>, TFind, TReplace>
@@ -33713,7 +33713,7 @@ type Multiple<TText extends readonly string[], TFind extends string, TReplace ex
33713
33713
  */
33714
33714
  type ReplaceAll<TText extends string | readonly string[], TFind extends string, TReplace extends string> = TText extends readonly string[] ? IsLiteral<TText> extends true ? Multiple<TText, TFind, TReplace> : string[] : TText extends string ? Singular<TText, TFind, TReplace> : never;
33715
33715
 
33716
- type Process$I<TChars extends readonly string[], TRetain extends string> = RemoveMarked<{
33716
+ type Process$J<TChars extends readonly string[], TRetain extends string> = RemoveMarked<{
33717
33717
  [K in keyof TChars]: TChars[K] extends TRetain ? TChars[K] : Constant<"Marked">;
33718
33718
  }>;
33719
33719
  /**
@@ -33723,7 +33723,7 @@ type Process$I<TChars extends readonly string[], TRetain extends string> = Remov
33723
33723
  * of the characters in `TRetain` _retained_ while all
33724
33724
  * other characters are removed.
33725
33725
  */
33726
- type RetainChars<TContent extends string, TRetain extends string> = Or<[IsWideType<TContent>, IsWideType<TRetain>]> extends true ? string : Process$I<Chars<TContent>, TRetain> extends readonly string[] ? Join<Process$I<Chars<TContent>, TRetain>> : never;
33726
+ type RetainChars<TContent extends string, TRetain extends string> = Or<[IsWideType<TContent>, IsWideType<TRetain>]> extends true ? string : Process$J<Chars<TContent>, TRetain> extends readonly string[] ? Join<Process$J<Chars<TContent>, TRetain>> : never;
33727
33727
 
33728
33728
  type ProcessTuple$2<TArray extends readonly unknown[] | unknown[], TResults extends readonly unknown[] = []> = [
33729
33729
  ] extends TArray ? TResults : First<TArray> extends TypedFunction ? ProcessTuple$2<AfterFirst<TArray>, [...TResults, ReturnType<First<TArray>>]> : ProcessTuple$2<AfterFirst<TArray>, TResults>;
@@ -33780,7 +33780,7 @@ type StringLiteralFromTuple<T extends readonly unknown[]> = LitString<T>;
33780
33780
  type Strip<TChars extends readonly string[], TStrip extends string> = {
33781
33781
  [K in keyof TChars]: TChars[K] extends TStrip ? Marked$3 : TChars[K];
33782
33782
  };
33783
- type Process$H<TChars extends readonly string[], TStrip extends string> = As<RemoveMarked<Strip<TChars, TStrip>>, readonly string[]>;
33783
+ type Process$I<TChars extends readonly string[], TStrip extends string> = As<RemoveMarked<Strip<TChars, TStrip>>, readonly string[]>;
33784
33784
  /**
33785
33785
  * **StripChars**`<TContent,TStrip>`
33786
33786
  *
@@ -33791,7 +33791,7 @@ type Process$H<TChars extends readonly string[], TStrip extends string> = As<Rem
33791
33791
  * of single characters or this will throw
33792
33792
  * `ErrorCondition<"invalid-strip-char">`
33793
33793
  */
33794
- type StripChars<TContent extends string, TStrip extends string> = Or<[IsWideType<TContent>, IsWideType<TStrip>]> extends true ? string : Chars<TContent> extends readonly string[] ? Concat<Process$H<Chars<TContent>, TStrip>> extends string ? Concat<Process$H<Chars<TContent>, TStrip>> : never : never;
33794
+ type StripChars<TContent extends string, TStrip extends string> = Or<[IsWideType<TContent>, IsWideType<TStrip>]> extends true ? string : Chars<TContent> extends readonly string[] ? Concat<Process$I<Chars<TContent>, TStrip>> extends string ? Concat<Process$I<Chars<TContent>, TStrip>> : never : never;
33795
33795
 
33796
33796
  /**
33797
33797
  * **ToBoolean**`<T>`
@@ -33900,7 +33900,7 @@ type ToStringArray<T extends Tuple> = {
33900
33900
  */
33901
33901
  type ToUnion<T extends any[]> = T[number];
33902
33902
 
33903
- type Process$G<S extends string> = string extends S ? string : S extends `${Whitespace}${infer Right}` ? Process$G<Right> : S extends `${infer Left}${Whitespace}` ? Process$G<Left> : S;
33903
+ type Process$H<S extends string> = string extends S ? string : S extends `${Whitespace}${infer Right}` ? Process$H<Right> : S extends `${infer Left}${Whitespace}` ? Process$H<Left> : S;
33904
33904
  /**
33905
33905
  * Trims off blank spaces, `\n` and `\t` characters from both sides of a _string literal_.
33906
33906
  * ```ts
@@ -33910,7 +33910,7 @@ type Process$G<S extends string> = string extends S ? string : S extends `${Whit
33910
33910
  * type T = Trim<string>;
33911
33911
  * ```
33912
33912
  */
33913
- type Trim<S extends string> = Process$G<S> extends string ? Process$G<S> : never;
33913
+ type Trim<S extends string> = Process$H<S> extends string ? Process$H<S> : never;
33914
33914
 
33915
33915
  /**
33916
33916
  * Trims off whitespace on left of string
@@ -33986,7 +33986,7 @@ type Mutate<TElements extends readonly unknown[], TOp extends UnionMutationOp> =
33986
33986
  } : never;
33987
33987
  type UnionMutate<U, Op extends UnionMutationOp> = [U] extends [never] ? never : IsUnion<U> extends true ? Mutate<UnionToTuple$1<U>, Op>[number] : U;
33988
33988
 
33989
- type Process$F<U, Last = LastInUnion$1<U>> = [U] extends [never] ? [] : [IsUnion<U>] extends [true] ? [Last, Exclude<U, Last>] : U;
33989
+ type Process$G<U, Last = LastInUnion$1<U>> = [U] extends [never] ? [] : [IsUnion<U>] extends [true] ? [Last, Exclude<U, Last>] : U;
33990
33990
  /**
33991
33991
  * **ShiftUnion**`<U>`
33992
33992
  *
@@ -34004,7 +34004,7 @@ type Process$F<U, Last = LastInUnion$1<U>> = [U] extends [never] ? [] : [IsUnion
34004
34004
  * - when calling `ShiftUnion`<U>` where `U` is _not_ a union you will
34005
34005
  * get the tuple `[never, U]`
34006
34006
  */
34007
- type UnionShift<U, Last = LastInUnion$1<U>> = Process$F<U, Last> extends readonly unknown[] ? IsUnion<U> extends true ? [Last, Exclude<U, Last>] : U : [never, IsUnion<U> extends true ? [Last, Exclude<U, Last>] : U];
34007
+ type UnionShift<U, Last = LastInUnion$1<U>> = Process$G<U, Last> extends readonly unknown[] ? IsUnion<U> extends true ? [Last, Exclude<U, Last>] : U : [never, IsUnion<U> extends true ? [Last, Exclude<U, Last>] : U];
34008
34008
 
34009
34009
  /**
34010
34010
  * **UnionToIntersection**`<U>`
@@ -34028,7 +34028,7 @@ type UnionWithAll<TList extends readonly unknown[], TUnion> = {
34028
34028
  [K in keyof TList]: TList[K] | TUnion;
34029
34029
  };
34030
34030
 
34031
- type Process$E<T extends readonly unknown[]> = {
34031
+ type Process$F<T extends readonly unknown[]> = {
34032
34032
  [K in keyof T]: T[K] extends TypedFunction ? ReturnType<T[K]> : T[K];
34033
34033
  };
34034
34034
  /**
@@ -34044,7 +34044,7 @@ type Process$E<T extends readonly unknown[]> = {
34044
34044
  * type T = ValueOrReturns<[true, "foo", () => "bar"]>;
34045
34045
  * ```
34046
34046
  */
34047
- type ValueOrReturnValue<TEval> = TEval extends readonly unknown[] ? Process$E<TEval> : Process$E<[TEval]>[0];
34047
+ type ValueOrReturnValue<TEval> = TEval extends readonly unknown[] ? Process$F<TEval> : Process$F<[TEval]>[0];
34048
34048
 
34049
34049
  type GetKeys$1<T extends AnyFunction> = FnProps<T> extends Dictionary ? Keys<FnProps<T>> extends readonly ObjectKey[] ? Keys<FnProps<T>> extends readonly (keyof FnProps<T>)[] ? Keys<FnProps<T>> : never : never : never;
34050
34050
  /**
@@ -34053,10 +34053,10 @@ type GetKeys$1<T extends AnyFunction> = FnProps<T> extends Dictionary ? Keys<FnP
34053
34053
  * Widens any _scalar_ type `T`.
34054
34054
  */
34055
34055
  type WidenScalar<T extends Scalar> = T extends string ? string : T extends number ? number : T extends boolean ? boolean : T extends symbol ? symbol : T extends null ? null : never;
34056
- type Process$D<T> = T extends Scalar ? WidenScalar<T> : T extends unknown[] ? T extends (infer Type)[] ? IsUnion<Type> extends true ? WidenUnion<Type>[] : Type extends unknown[] ? WidenTuple<Type> : T : never : T extends AnyFunction ? GetKeys$1<T>["length"] extends 0 ? RemoveFnProps<T> : RemoveFnProps<T> & ExpandRecursively<WidenObj<FnProps<T>, GetKeys$1<T>>> : T;
34057
- type WidenObj<T extends Dictionary, TKeys extends readonly (keyof T)[], TResults extends Dictionary = EmptyObject> = [] extends TKeys ? TResults : WidenObj<T, AfterFirst<TKeys>, TResults & Record<First<TKeys>, T[First<TKeys>] extends TypedFunction ? WidenFn<IsNarrowingFn<T[First<TKeys>]>, Parameters<T[First<TKeys>]>, ReturnType<T[First<TKeys>]>, ExpandDictionary<FnProps<T[First<TKeys>]>>> : IsLiteral<T[First<TKeys>]> extends true ? WidenLiteral<T[First<TKeys>]> : Process$D<T[First<TKeys>]>>>;
34056
+ type Process$E<T> = T extends Scalar ? WidenScalar<T> : T extends unknown[] ? T extends (infer Type)[] ? IsUnion<Type> extends true ? WidenUnion<Type>[] : Type extends unknown[] ? WidenTuple<Type> : T : never : T extends AnyFunction ? GetKeys$1<T>["length"] extends 0 ? RemoveFnProps<T> : RemoveFnProps<T> & ExpandRecursively<WidenObj<FnProps<T>, GetKeys$1<T>>> : T;
34057
+ type WidenObj<T extends Dictionary, TKeys extends readonly (keyof T)[], TResults extends Dictionary = EmptyObject> = [] extends TKeys ? TResults : WidenObj<T, AfterFirst<TKeys>, TResults & Record<First<TKeys>, T[First<TKeys>] extends TypedFunction ? WidenFn<IsNarrowingFn<T[First<TKeys>]>, Parameters<T[First<TKeys>]>, ReturnType<T[First<TKeys>]>, ExpandDictionary<FnProps<T[First<TKeys>]>>> : IsLiteral<T[First<TKeys>]> extends true ? WidenLiteral<T[First<TKeys>]> : Process$E<T[First<TKeys>]>>>;
34058
34058
  type WidenTuple<T extends readonly unknown[]> = {
34059
- [K in keyof T]: IsLiteral<T[K]> extends true ? WidenLiteral<T[K]> : Process$D<T[K]>;
34059
+ [K in keyof T]: IsLiteral<T[K]> extends true ? WidenLiteral<T[K]> : Process$E<T[K]>;
34060
34060
  };
34061
34061
  type WidenFnParams<T extends readonly unknown[]> = {
34062
34062
  [K in keyof T]: IsLiteral<T[K]> extends true ? WidenLiteral<T[K]> : IsLiteralUnion<T[K]> extends true ? WidenUnion<T[K]> : T[K];
@@ -34089,7 +34089,7 @@ type WidenContainer<T extends Container, TForce extends boolean = false> = [
34089
34089
  * **Note:** should you want the container values to be fully widened you
34090
34090
  * can set `TForce` to true.
34091
34091
  */
34092
- type Widen<T, TForce extends boolean = false> = [IsUnion<T>] extends [true] ? WidenUnion<T> : T extends Container ? WidenContainer<T, TForce> : T extends Scalar ? WidenScalar<T> : Process$D<T>;
34092
+ type Widen<T, TForce extends boolean = false> = [IsUnion<T>] extends [true] ? WidenUnion<T> : T extends Container ? WidenContainer<T, TForce> : T extends Scalar ? WidenScalar<T> : Process$E<T>;
34093
34093
 
34094
34094
  type ProcessArr<T extends readonly unknown[]> = {
34095
34095
  [K in keyof T]: Widen<T[K]>;
@@ -34127,7 +34127,7 @@ type WidenValues<T extends Container> = T extends readonly unknown[] ? ProcessAr
34127
34127
  type WithDefault<TVal, TDef, TPolicy extends "nothing" | "falsy" = "nothing"> = TPolicy extends "nothing" ? If<Extends<TVal, Nothing>, TDef, TVal> : TPolicy extends "falsy" ? If<IsFalsy<TVal>, TDef, TVal> : never;
34128
34128
 
34129
34129
  type Tighten<T extends string> = T extends ` ${infer Rest extends string}` ? T extends ` ${infer Double extends string}` ? Double : Rest : T;
34130
- type Process$C<T extends string, Result extends readonly unknown[] = []> = T extends `${infer Element},${infer Rest}` ? Process$C<Rest, [
34130
+ type Process$D<T extends string, Result extends readonly unknown[] = []> = T extends `${infer Element},${infer Rest}` ? Process$D<Rest, [
34131
34131
  ...Result,
34132
34132
  Tighten<Element> extends NumberLike ? AsNumber<Tighten<Element>> : Tighten<Element>
34133
34133
  ]> : [
@@ -34158,7 +34158,7 @@ type ProcessUnionStr<T extends string, Result extends string | number = never> =
34158
34158
  *
34159
34159
  * **Related:** `CsvToTupleStr`, `CsvToUnion`
34160
34160
  */
34161
- type CsvToTuple<T extends string> = Process$C<T>;
34161
+ type CsvToTuple<T extends string> = Process$D<T>;
34162
34162
  /**
34163
34163
  * **CsvToTupleStr**`<T>`
34164
34164
  *
@@ -34195,14 +34195,14 @@ type CsvToStrUnion<T extends string> = ProcessUnionStr<T>;
34195
34195
  */
34196
34196
  type CsvToJsonTuple<T extends string> = ProcessJsonTuple<T>;
34197
34197
 
34198
- type Process$B<A extends NumberLike, B extends NumberLike> = If<HaveSameNumericSign<A, B>, If<IsGreaterThan<Abs<A>, Abs<B>>, Add<Abs<A>, AsNegativeNumber<B>>, Add<Abs<B>, AsNegativeNumber<A>>>, Add<Abs<A>, Abs<B>>>;
34198
+ type Process$C<A extends NumberLike, B extends NumberLike> = If<HaveSameNumericSign<A, B>, If<IsGreaterThan<Abs<A>, Abs<B>>, Add<Abs<A>, AsNegativeNumber<B>>, Add<Abs<B>, AsNegativeNumber<A>>>, Add<Abs<A>, Abs<B>>>;
34199
34199
  /**
34200
34200
  * **Delta**`<A,B>`
34201
34201
  *
34202
34202
  * Provides the _delta_ between two numbers (including
34203
34203
  * between negative numbers).
34204
34204
  */
34205
- type Delta<A extends NumberLike, B extends NumberLike> = A extends `${number}` ? Process$B<A, B> : AsNumber<Process$B<A, B>>;
34205
+ type Delta<A extends NumberLike, B extends NumberLike> = A extends `${number}` ? Process$C<A, B> : AsNumber<Process$C<A, B>>;
34206
34206
  type AsLit<T extends NumberLike> = T extends `${number}` ? T : T extends number ? `${T}` : never;
34207
34207
  type ProcessNeg<A extends `${number}`, B extends `${number}`> = Delta<A, B> extends `${infer Num extends number}` ? StartsWith<Num, "-"> extends true ? `${Num}` : `-${Num}` : never;
34208
34208
  type NegDelta<A extends NumberLike, B extends NumberLike> = A extends number ? ParseInt<ProcessNeg<AsLit<A>, AsLit<B>>> : ProcessNeg<AsLit<A>, AsLit<B>>;
@@ -34329,7 +34329,7 @@ type Negative<T extends number | `${number}`> = T extends `${number}` ? AsString
34329
34329
  */
34330
34330
  type NextDigit<T extends Digit | NumericChar> = T extends `${NumericChar}` ? ToString<NextDigit<AsNumber<T>>> : T extends 0 ? 1 : T extends 1 ? 2 : T extends 2 ? 3 : T extends 3 ? 4 : T extends 4 ? 5 : T extends 5 ? 6 : T extends 6 ? 7 : T extends 7 ? 8 : T extends 8 ? 9 : T extends 9 ? 0 : never;
34331
34331
 
34332
- type Process$A<L, C extends unknown[] = [], R = L> = C["length"] extends L ? R : Process$A<L, [...C, 0], C["length"] | R>;
34332
+ type Process$B<L, C extends unknown[] = [], R = L> = C["length"] extends L ? R : Process$B<L, [...C, 0], C["length"] | R>;
34333
34333
  /**
34334
34334
  * **NumericRange**`<TLow,THigh>`
34335
34335
  *
@@ -34340,7 +34340,7 @@ type Process$A<L, C extends unknown[] = [], R = L> = C["length"] extends L ? R :
34340
34340
  * type Range = NumericRange<2,7>;
34341
34341
  * ```
34342
34342
  */
34343
- type NumericRange<TLow, THigh> = TLow | Exclude<Process$A<THigh>, Process$A<TLow>>;
34343
+ type NumericRange<TLow, THigh> = TLow | Exclude<Process$B<THigh>, Process$B<TLow>>;
34344
34344
 
34345
34345
  /**
34346
34346
  * **PriorDigit**`<T>`
@@ -34362,13 +34362,13 @@ type PriorDigit<T extends Digit | NumericChar> = T extends `${NumericChar}` ? To
34362
34362
  type ConvertNumber<A extends number, B extends number> = HaveSameNumericSign<A, B> extends true ? IsNegativeNumber<A> extends true ? Add<Abs<A>, Abs<B>> extends NumberLike ? AsNegativeNumber<Add<Abs<A>, Abs<B>>> : never : IsNegativeNumber<B> extends true ? Add<A, B> : IsNegativeNumber<A> extends true ? IsGreaterThanOrEqual<Abs<B>, Abs<A>> extends true ? Delta<A, B> : Add<B, A> : IsGreaterThanOrEqual<Abs<B>, Abs<A>> extends true ? NegDelta<A, B> : Delta<A, B> : never;
34363
34363
  type SummedStrings<A extends number, B extends number> = AsNegativeNumber<Add<A, B>>;
34364
34364
  type ConvertString<A extends `${number}`, B extends `${number}`> = HaveSameNumericSign<A, B> extends true ? IsNegativeNumber<A> extends true ? Add<Abs<A>, Abs<B>> extends NumberLike ? SummedStrings<ParseInt<Abs<A>>, ParseInt<Abs<B>>> : never : IsNegativeNumber<B> extends true ? Add<A, B> : IsNegativeNumber<A> extends true ? IsGreaterThanOrEqual<Abs<B>, Abs<A>> extends true ? Delta<A, B> : Add<B, A> : IsGreaterThanOrEqual<Abs<B>, Abs<A>> extends true ? NegDelta<A, B> : Delta<A, B> : never;
34365
- type Process$z<A extends NumberLike, B extends NumberLike> = A extends number ? B extends number ? ConvertNumber<A, B> : ConvertNumber<A, ParseInt<B>> : A extends `${number}` ? B extends `${number}` ? ConvertString<A, B> : ConvertString<A, `${As<B, number>}`> : never;
34365
+ type Process$A<A extends NumberLike, B extends NumberLike> = A extends number ? B extends number ? ConvertNumber<A, B> : ConvertNumber<A, ParseInt<B>> : A extends `${number}` ? B extends `${number}` ? ConvertString<A, B> : ConvertString<A, `${As<B, number>}`> : never;
34366
34366
  /**
34367
34367
  * **Subtract**`<A,B>`
34368
34368
  *
34369
34369
  * Subtracts the value of `B` _from_ `A`.
34370
34370
  */
34371
- type Subtract<A extends NumberLike, B extends NumberLike> = Or<[IsWideType<A>, IsWideType<B>]> extends true ? A extends number ? number : `${number}` : Process$z<A, B>;
34371
+ type Subtract<A extends NumberLike, B extends NumberLike> = Or<[IsWideType<A>, IsWideType<B>]> extends true ? A extends number ? number : `${number}` : Process$A<A, B>;
34372
34372
 
34373
34373
  type ToIntegerOp = "truncate" | "round";
34374
34374
  type Truncate<T extends `${number}`> = T extends `${number}.${number}` ? T extends `${infer Q}.${number}` ? Q & `${number}` : never : T;
@@ -34531,7 +34531,7 @@ type ConvertSet<TSet extends readonly unknown[], TConversions extends Conversion
34531
34531
  type SingleFilter$2<TList extends readonly unknown[], TComparator, TProp extends string, TOp extends ComparatorOperation, Result extends unknown[] = []> = TList extends [infer Head, ...infer Rest] ? [
34532
34532
  Compare$1<Get$1<Head, TProp>, TOp, TComparator>
34533
34533
  ] extends [true] ? SingleFilter$2<Rest, TComparator, TProp, TOp, Result> : SingleFilter$2<Rest, TComparator, TProp, TOp, [...Result, Head]> : Result;
34534
- type Process$y<TList extends readonly unknown[], TComparator, TProp extends string, TOp extends ComparatorOperation> = TList extends unknown[] ? SingleFilter$2<TList, TComparator, TProp, TOp> : TList extends readonly unknown[] ? Readonly<SingleFilter$2<[...TList], TComparator, TProp, TOp>> : never;
34534
+ type Process$z<TList extends readonly unknown[], TComparator, TProp extends string, TOp extends ComparatorOperation> = TList extends unknown[] ? SingleFilter$2<TList, TComparator, TProp, TOp> : TList extends readonly unknown[] ? Readonly<SingleFilter$2<[...TList], TComparator, TProp, TOp>> : never;
34535
34535
  /**
34536
34536
  * **FilterByProp**`<TList, TComparator, TProp, [TOp]>`
34537
34537
  *
@@ -34544,9 +34544,9 @@ type Process$y<TList extends readonly unknown[], TComparator, TProp extends stri
34544
34544
  *
34545
34545
  * **Related:** `RetainByProp`, `Filter`, `RetainFromList`, `RemoveFromList`, `FilterProps`
34546
34546
  */
34547
- type FilterByProp<TList extends readonly unknown[], TComparator, TProp extends string, TOp extends ComparatorOperation = "extends"> = IsDotPath<TProp> extends false ? Throw<"invalid-dot-path", `the property value TProp must be a valid dotpath but "${TProp}" is not valid!`> : TList extends readonly unknown[] ? IfNever<TComparator, RemoveNever<TList>, TComparator extends any[] ? Process$y<TList, TComparator[number], TProp, TOp> : Process$y<TList, TComparator, TProp, TOp>> : never;
34547
+ type FilterByProp<TList extends readonly unknown[], TComparator, TProp extends string, TOp extends ComparatorOperation = "extends"> = IsDotPath<TProp> extends false ? Throw<"invalid-dot-path", `the property value TProp must be a valid dotpath but "${TProp}" is not valid!`> : TList extends readonly unknown[] ? IfNever<TComparator, RemoveNever<TList>, TComparator extends any[] ? Process$z<TList, TComparator[number], TProp, TOp> : Process$z<TList, TComparator, TProp, TOp>> : never;
34548
34548
 
34549
- type Process$x<T extends readonly unknown[]> = RemoveMarked<{
34549
+ type Process$y<T extends readonly unknown[]> = RemoveMarked<{
34550
34550
  [K in keyof T]: IsLiteral<T[K]> extends true ? Constant<"Marked"> : T[K];
34551
34551
  }>;
34552
34552
  /**
@@ -34560,7 +34560,7 @@ type Process$x<T extends readonly unknown[]> = RemoveMarked<{
34560
34560
  *
34561
34561
  * **Related:** `Filter`, `FilterWideTypes`, `RetainLiterals`
34562
34562
  */
34563
- type FilterLiterals<T extends readonly unknown[]> = Process$x<T> extends readonly unknown[] ? Process$x<T> : never;
34563
+ type FilterLiterals<T extends readonly unknown[]> = Process$y<T> extends readonly unknown[] ? Process$y<T> : never;
34564
34564
 
34565
34565
  /**
34566
34566
  * **FilterWideTypes**`<T>`
@@ -34644,12 +34644,12 @@ type WideFlatten<T> = T extends (infer Type)[] ? Type extends unknown[] ? Type :
34644
34644
  * Just returns `TList` "as is" if it's not a a Tuple or
34645
34645
  * Union type.
34646
34646
  */
34647
- type Process$w<TList, TLevel extends 1 | 2 | 3 = 1> = TList extends readonly unknown[] ? IsTuple<TList> extends true ? FlattenTuple<TList, TLevel> : WideFlatten<TList> : IsUnion<TList> extends true ? FlattenUnion<TList> : TList;
34647
+ type Process$x<TList, TLevel extends 1 | 2 | 3 = 1> = TList extends readonly unknown[] ? IsTuple<TList> extends true ? FlattenTuple<TList, TLevel> : WideFlatten<TList> : IsUnion<TList> extends true ? FlattenUnion<TList> : TList;
34648
34648
  /**
34649
34649
  * converts a wide array to a scalar and tuple
34650
34650
  * to a union type
34651
34651
  */
34652
- type ToScalar<TList, TLevel extends 1 | 2 | 3> = [IsTuple<Process$w<TList>>] extends [true] ? TupleToUnion<Process$w<TList, TLevel>> : Process$w<TList, TLevel> extends (infer Type)[] ? Type : never;
34652
+ type ToScalar<TList, TLevel extends 1 | 2 | 3> = [IsTuple<Process$x<TList>>] extends [true] ? TupleToUnion<Process$x<TList, TLevel>> : Process$x<TList, TLevel> extends (infer Type)[] ? Type : never;
34653
34653
  type IterateScalar<T extends readonly unknown[], TLevel extends 1 | 2 | 3> = TupleToUnion<{
34654
34654
  [K in keyof T]: T[K] extends unknown[] ? ToScalar<T[K], TLevel> : T[K];
34655
34655
  }>;
@@ -34665,15 +34665,15 @@ type IterateScalar<T extends readonly unknown[], TLevel extends 1 | 2 | 3> = Tup
34665
34665
  * if you set `ToScalar` to `true` then it will flatten right out of being an array
34666
34666
  * into a union type
34667
34667
  */
34668
- type Flatten<TList, TLevel extends 1 | 2 | 3 = 1, ToScalar extends boolean = false> = [ToScalar] extends [false] ? Process$w<TList, TLevel> : [
34669
- IsUnion<Process$w<TList, TLevel>>
34670
- ] extends [true] ? IterateScalar<UnionToTuple$1<Process$w<TList, TLevel>>, TLevel> : [IsTuple<Process$w<TList, TLevel>>] extends [true] ? TupleToUnion<Process$w<TList, TLevel>> : Process$w<TList, TLevel> extends (infer Type)[] ? Type : never;
34668
+ type Flatten<TList, TLevel extends 1 | 2 | 3 = 1, ToScalar extends boolean = false> = [ToScalar] extends [false] ? Process$x<TList, TLevel> : [
34669
+ IsUnion<Process$x<TList, TLevel>>
34670
+ ] extends [true] ? IterateScalar<UnionToTuple$1<Process$x<TList, TLevel>>, TLevel> : [IsTuple<Process$x<TList, TLevel>>] extends [true] ? TupleToUnion<Process$x<TList, TLevel>> : Process$x<TList, TLevel> extends (infer Type)[] ? Type : never;
34671
34671
 
34672
34672
  /**
34673
34673
  * extract props from functions
34674
34674
  */
34675
34675
  type F<T> = T extends TypedFunction ? FnProps<T> : T;
34676
- type Process$v<TList extends readonly unknown[], TKey extends string> = RemoveNever<{
34676
+ type Process$w<TList extends readonly unknown[], TKey extends string> = RemoveNever<{
34677
34677
  [K in keyof TList]: [TKey] extends [keyof F<TList[K]>] ? [IndexOf<F<TList[K]>, TKey>] extends [undefined] ? never : IndexOf<F<TList[K]>, TKey> : [IsValidDotPath<F<TList[K]>, TKey>] extends [true] ? Mutable<Get$1<F<TList[K]>, TKey, never>> : never;
34678
34678
  }>;
34679
34679
  /**
@@ -34695,7 +34695,7 @@ type Process$v<TList extends readonly unknown[], TKey extends string> = RemoveNe
34695
34695
  * ], "name">
34696
34696
  * ```
34697
34697
  */
34698
- type GetEach<TList extends readonly unknown[], TKey extends string | null> = TKey extends null ? TList : TKey extends "" ? TList : IsReadonlyArray<TList> extends true ? Readonly<Process$v<[...TList], Exclude<TKey, null>>> : Process$v<TList, Exclude<TKey, null>>;
34698
+ type GetEach<TList extends readonly unknown[], TKey extends string | null> = TKey extends null ? TList : TKey extends "" ? TList : IsReadonlyArray<TList> extends true ? Readonly<Process$w<[...TList], Exclude<TKey, null>>> : Process$w<TList, Exclude<TKey, null>>;
34699
34699
 
34700
34700
  type Override<TValue, TOverride> = TOverride extends Constant<"no-override"> ? TValue : TValue extends ErrorCondition<"invalid-index"> ? TOverride : TValue;
34701
34701
  type NegativeIndex<TValue extends readonly unknown[], TIdx extends number> = Decrement<Abs<TIdx>> extends number ? If<IsValidIndex<TValue, Decrement<Abs<TIdx>>>, TValue[Decrement<Abs<TIdx>>], Throw<"invalid-index", `Use of a negative index [${AsString<TIdx>}] was unsuccessful in matching a valid index`, "IndexOf", {
@@ -34720,7 +34720,7 @@ type HandleObj<TValue extends Dictionary, TIdx extends PropertyKey> = TIdx exten
34720
34720
  key: TIdx;
34721
34721
  library: "inferred-types/constants";
34722
34722
  }>;
34723
- type Process$u<TValue, TIdx extends PropertyKey | null> = If<IsNull<TIdx>, TValue, TValue extends readonly unknown[] ? If<IsValidIndex<TValue, AsPropertyKey<TIdx>>, HandleArr<TValue, AsPropertyKey<TIdx>>, Throw<"invalid-index", `Call to IndexOf<DescribeType<TValue>,${AsString<TIdx>}> is not allowed as an tuple based container must receive either null or numeric index value.`, "IndexOf", {
34723
+ type Process$v<TValue, TIdx extends PropertyKey | null> = If<IsNull<TIdx>, TValue, TValue extends readonly unknown[] ? If<IsValidIndex<TValue, AsPropertyKey<TIdx>>, HandleArr<TValue, AsPropertyKey<TIdx>>, Throw<"invalid-index", `Call to IndexOf<DescribeType<TValue>,${AsString<TIdx>}> is not allowed as an tuple based container must receive either null or numeric index value.`, "IndexOf", {
34724
34724
  library: "inferred-types/constants";
34725
34725
  container: TValue;
34726
34726
  key: TIdx;
@@ -34749,9 +34749,9 @@ type Process$u<TValue, TIdx extends PropertyKey | null> = If<IsNull<TIdx>, TValu
34749
34749
  * **Errors:** produces an `ErrorCondition<"invalid-index">` when an a bad index value
34750
34750
  * is passed in for the given container
34751
34751
  */
34752
- type IndexOf<TValue, TIdx extends PropertyKey | null, TOverride = Constant<"no-override">> = TIdx extends null ? TValue : Override<Process$u<TValue, TIdx>, TOverride>;
34752
+ type IndexOf<TValue, TIdx extends PropertyKey | null, TOverride = Constant<"no-override">> = TIdx extends null ? TValue : Override<Process$v<TValue, TIdx>, TOverride>;
34753
34753
 
34754
- type Process$t<TTup extends Tuple, TResult = First<TTup>> = [] extends TTup ? TResult : Process$t<AfterFirst<TTup>, TResult & First<TTup>>;
34754
+ type Process$u<TTup extends Tuple, TResult = First<TTup>> = [] extends TTup ? TResult : Process$u<AfterFirst<TTup>, TResult & First<TTup>>;
34755
34755
  /**
34756
34756
  * **Intersect**`<TList>`
34757
34757
  *
@@ -34759,7 +34759,7 @@ type Process$t<TTup extends Tuple, TResult = First<TTup>> = [] extends TTup ? TR
34759
34759
  *
34760
34760
  * **Related:** `Intersection`, `IntersectAll`
34761
34761
  */
34762
- type Intersect$1<TList extends Tuple> = Process$t<TList>;
34762
+ type Intersect$1<TList extends Tuple> = Process$u<TList>;
34763
34763
 
34764
34764
  type Intersect<TList extends readonly unknown[], TIntersect extends Narrowable, TResults extends unknown[] = []> = [] extends TList ? TResults : Intersect<AfterFirst<TList>, TIntersect, [
34765
34765
  ...TResults,
@@ -34852,14 +34852,14 @@ interface FnMeta<TFn extends AnyFunction = AnyFunction, TArgs extends readonly a
34852
34852
  isNarrowingFn: IsNarrowingFn<TFn>;
34853
34853
  }
34854
34854
 
34855
- type Process$s<T extends AnyFunction> = IsEqual<T, Function> extends true ? EmptyObject : keyof T extends ObjectKey ? Pick<T, keyof T> : never;
34855
+ type Process$t<T extends AnyFunction> = IsEqual<T, Function> extends true ? EmptyObject : keyof T extends ObjectKey ? Pick<T, keyof T> : never;
34856
34856
  /**
34857
34857
  * **FnProps**`<T>`
34858
34858
  *
34859
34859
  * Return a dictionary of key/value pairs from a function. If no key/value
34860
34860
  * pairs are assigned to the function base then an empty object is returned.
34861
34861
  */
34862
- type FnProps<T extends AnyFunction> = Process$s<T>;
34862
+ type FnProps<T extends AnyFunction> = Process$t<T>;
34863
34863
 
34864
34864
  type FnDefn = [fn: AnyFunction] | [fn: AnyFunction, desc: string] | [fn: AnyFunction, props: Record<ObjectKey, unknown>];
34865
34865
  /**
@@ -36117,7 +36117,7 @@ interface VueRef<T = any> {
36117
36117
  */
36118
36118
  type WrapperFn<TFn extends TypedFunction, TTransform extends <TRtn extends ReturnType<TFn>>(rtn: TRtn) => unknown, TState extends Container | Unset = Unset> = If<IsUnset<TState>, FnFrom<Parameters<TFn>, ReturnType<AsNarrowingFn<TTransform>>>, <T extends TState>(state: T) => FnFrom<Parameters<TFn>, ReturnType<AsNarrowingFn<TTransform>>>>;
36119
36119
 
36120
- type Process$r<TValues extends readonly (boolean | LogicFunction)[], _TParams extends readonly unknown[] = []> = {
36120
+ type Process$s<TValues extends readonly (boolean | LogicFunction)[], _TParams extends readonly unknown[] = []> = {
36121
36121
  [K in keyof TValues]: TValues[K] extends ((...args: any[]) => boolean) ? ReturnType<TValues[K]> : TValues[K];
36122
36122
  };
36123
36123
  /**
@@ -36130,7 +36130,7 @@ type Process$r<TValues extends readonly (boolean | LogicFunction)[], _TParams ex
36130
36130
  *
36131
36131
  * **Related**: `ReturnTypes` and `TruthyReturns`
36132
36132
  */
36133
- type LogicalReturns<TValues extends readonly (boolean | LogicFunction)[], _TParams extends readonly unknown[] = []> = Process$r<TValues, _TParams> extends readonly boolean[] ? Process$r<TValues, _TParams> : never;
36133
+ type LogicalReturns<TValues extends readonly (boolean | LogicFunction)[], _TParams extends readonly unknown[] = []> = Process$s<TValues, _TParams> extends readonly boolean[] ? Process$s<TValues, _TParams> : never;
36134
36134
 
36135
36135
  type Reduce<T extends readonly ([string, number])[], TMax extends number = 0, TVal extends string = ""> = [] extends T ? TVal : Reduce<AfterFirst<T>, First<T> extends [string, infer Len extends number] ? If<IsGreaterThan<Len, TMax>, Len, TMax> : TMax, First<T> extends [infer Val extends string, infer Len extends number] ? If<IsGreaterThan<Len, TMax>, Val, TVal> : TVal>;
36136
36136
  /**
@@ -36150,7 +36150,7 @@ type Recurse<TList extends Tuple, TResults extends Tuple = []> = [] extends TLis
36150
36150
  type Convert$1<TList extends Tuple> = Length<TList> extends 0 ? number[] : Recurse<{
36151
36151
  [K in keyof TList]: K;
36152
36152
  }>;
36153
- type Process$q<TList extends Tuple> = If<IsReadonlyArray<TList>, TList["length"] extends 0 ? number[] : Readonly<Convert$1<TList>>, Convert$1<TList>>;
36153
+ type Process$r<TList extends Tuple> = If<IsReadonlyArray<TList>, TList["length"] extends 0 ? number[] : Readonly<Convert$1<TList>>, Convert$1<TList>>;
36154
36154
  /**
36155
36155
  * **NumericKeys**<`TList`>
36156
36156
  *
@@ -36165,7 +36165,7 @@ type Process$q<TList extends Tuple> = If<IsReadonlyArray<TList>, TList["length"]
36165
36165
  *
36166
36166
  * **Related:** `Keys`
36167
36167
  */
36168
- type NumericKeys<TList extends Tuple> = Process$q<TList> extends readonly number[] ? Process$q<TList> : never;
36168
+ type NumericKeys<TList extends Tuple> = Process$r<TList> extends readonly number[] ? Process$r<TList> : never;
36169
36169
 
36170
36170
  type _Get<T, K, Acc = never> = K extends `${infer A}.${infer B}` ? A extends keyof T ? _Get<T[A], B, _Get<T[A], B>> : Acc : K extends keyof T ? _Get<T[K], K, T[K]> : Acc;
36171
36171
  /**
@@ -36183,7 +36183,7 @@ type Get$1<TContainer, TDotPath, TDefVal = undefined> = IsNever<_Get<TContainer,
36183
36183
  type SingleFilter$1<TList extends readonly unknown[], TComparator, TProp extends string, TOp extends ComparatorOperation, Result extends unknown[] = []> = TList extends [infer Head, ...infer Rest] ? [
36184
36184
  Compare$1<Get$1<Head, TProp>, TOp, TComparator>
36185
36185
  ] extends [true] ? SingleFilter$1<Rest, TComparator, TProp, TOp, [...Result, Head]> : SingleFilter$1<Rest, TComparator, TProp, TOp, Result> : Result;
36186
- type Process$p<TList extends unknown[] | readonly unknown[], TComparator, TProp extends string, TOp extends ComparatorOperation> = TList extends unknown[] ? SingleFilter$1<TList, TComparator, TProp, TOp> : TList extends readonly unknown[] ? Readonly<SingleFilter$1<[...TList], TComparator, TProp, TOp>> : never;
36186
+ type Process$q<TList extends unknown[] | readonly unknown[], TComparator, TProp extends string, TOp extends ComparatorOperation> = TList extends unknown[] ? SingleFilter$1<TList, TComparator, TProp, TOp> : TList extends readonly unknown[] ? Readonly<SingleFilter$1<[...TList], TComparator, TProp, TOp>> : never;
36187
36187
  /**
36188
36188
  * **RetainByProp**`<TList, TComparator, TProp, [TOp]>`
36189
36189
  *
@@ -36211,7 +36211,7 @@ type Process$p<TList extends unknown[] | readonly unknown[], TComparator, TProp
36211
36211
  *
36212
36212
  * **Related:** `FilterByProp`, `Filter`, `RetainFromList`, `RemoveFromList`
36213
36213
  */
36214
- type RetainByProp<TList extends readonly unknown[], TComparator, TProp extends string, TOp extends ComparatorOperation = "extends"> = IsDotPath<TProp> extends false ? Throw<"invalid-dot-path", `the property value TProp must be a valid dotpath but "${TProp}" is not valid!`> : TList extends readonly unknown[] ? IfNever<TComparator, RemoveNever<TList>, If<IsArray<TComparator>, Process$p<TList, TupleToUnion<TComparator>, TProp, TOp>, Process$p<TList, TComparator, TProp, TOp>>> : never;
36214
+ type RetainByProp<TList extends readonly unknown[], TComparator, TProp extends string, TOp extends ComparatorOperation = "extends"> = IsDotPath<TProp> extends false ? Throw<"invalid-dot-path", `the property value TProp must be a valid dotpath but "${TProp}" is not valid!`> : TList extends readonly unknown[] ? IfNever<TComparator, RemoveNever<TList>, If<IsArray<TComparator>, Process$q<TList, TupleToUnion<TComparator>, TProp, TOp>, Process$q<TList, TComparator, TProp, TOp>>> : never;
36215
36215
 
36216
36216
  type RevAcc<TInput extends readonly unknown[], TResults extends readonly unknown[] = []> = [] extends TInput ? TResults : RevAcc<AfterFirst<TInput>, [
36217
36217
  First<TInput>,
@@ -36292,7 +36292,7 @@ type _Pop<TVal extends Tuple> = TVal extends [...(infer Rest), unknown] ? Rest :
36292
36292
  */
36293
36293
  type Pop<TList extends Tuple | string> = TList extends string ? IsWideType<TList> extends true ? string : IsStringLiteral<TList> extends true ? TList extends string ? TList extends "" ? "" : Chars<TList> extends readonly string[] ? Concat<_Pop<Chars<TList>>> : never : never : string : _Pop<Exclude<TList, string>>;
36294
36294
 
36295
- type Process$o<TList extends readonly unknown[], TValue> = [
36295
+ type Process$p<TList extends readonly unknown[], TValue> = [
36296
36296
  ...TList,
36297
36297
  TValue
36298
36298
  ];
@@ -36303,7 +36303,7 @@ type Process$o<TList extends readonly unknown[], TValue> = [
36303
36303
  *
36304
36304
  * - If you want to make the push conditional you can add `TCondition`
36305
36305
  */
36306
- type Push<TList extends readonly unknown[], TVal, TCondition = true> = [TCondition] extends [true] ? As<Process$o<TList, TVal>, readonly unknown[]> : TList;
36306
+ type Push<TList extends readonly unknown[], TVal, TCondition = true> = [TCondition] extends [true] ? As<Process$p<TList, TVal>, readonly unknown[]> : TList;
36307
36307
 
36308
36308
  /**
36309
36309
  * **ReplaceLast**`<TList,TVal>`
@@ -36316,7 +36316,7 @@ type ReplaceLast<TList extends readonly any[], TVal> = Pop<TList> extends readon
36316
36316
  * Iterates over each element of the Tuple
36317
36317
  */
36318
36318
  type SingleFilter<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<Rest, TFilter, TOp, [...Result, Head]> : SingleFilter<Rest, TFilter, TOp, Result> : Result;
36319
- type Process$n<TList extends readonly unknown[], TComparator, TOp extends ComparatorOperation> = TList extends unknown[] ? SingleFilter<TList, TComparator, TOp> : TList extends readonly unknown[] ? Readonly<SingleFilter<[...TList], TComparator, TOp>> : never;
36319
+ type Process$o<TList extends readonly unknown[], TComparator, TOp extends ComparatorOperation> = TList extends unknown[] ? SingleFilter<TList, TComparator, TOp> : TList extends readonly unknown[] ? Readonly<SingleFilter<[...TList], TComparator, TOp>> : never;
36320
36320
  type PrepList<T extends readonly unknown[], O extends ComparatorOperation> = Or<[
36321
36321
  IsEqual<O, "contains">,
36322
36322
  IsEqual<O, "startsWith">,
@@ -36335,9 +36335,9 @@ type PrepList<T extends readonly unknown[], O extends ComparatorOperation> = Or<
36335
36335
  *
36336
36336
  * **Related:** `Filter`
36337
36337
  */
36338
- type Retain<TList extends readonly unknown[], TComparator, TOp extends ComparatorOperation = "extends"> = PrepList<TList, TOp> extends readonly unknown[] ? [TComparator] extends [unknown[]] ? Process$n<PrepList<TList, TOp>, TupleToUnion<TComparator>, TOp> : Process$n<PrepList<TList, TOp>, TComparator, TOp> : never;
36338
+ type Retain<TList extends readonly unknown[], TComparator, TOp extends ComparatorOperation = "extends"> = PrepList<TList, TOp> extends readonly unknown[] ? [TComparator] extends [unknown[]] ? Process$o<PrepList<TList, TOp>, TupleToUnion<TComparator>, TOp> : Process$o<PrepList<TList, TOp>, TComparator, TOp> : never;
36339
36339
 
36340
- type Process$m<T extends readonly unknown[]> = RemoveMarked<{
36340
+ type Process$n<T extends readonly unknown[]> = RemoveMarked<{
36341
36341
  [K in keyof T]: If<IsLiteral<T[K]>, T[K], Constant<"Marked">>;
36342
36342
  }>;
36343
36343
  /**
@@ -36350,9 +36350,9 @@ type Process$m<T extends readonly unknown[]> = RemoveMarked<{
36350
36350
  *
36351
36351
  * **Related:** `Retain`, `FilterLiterals`, `RetainWideTypes`
36352
36352
  */
36353
- type RetainLiterals<T extends readonly unknown[]> = Process$m<T> extends readonly unknown[] ? Process$m<T> : never;
36353
+ type RetainLiterals<T extends readonly unknown[]> = Process$n<T> extends readonly unknown[] ? Process$n<T> : never;
36354
36354
 
36355
- type Process$l<T extends readonly unknown[]> = RemoveMarked<{
36355
+ type Process$m<T extends readonly unknown[]> = RemoveMarked<{
36356
36356
  [K in keyof T]: If<IsWideType<T[K]>, T[K], Constant<"Marked">>;
36357
36357
  }>;
36358
36358
  /**
@@ -36366,7 +36366,7 @@ type Process$l<T extends readonly unknown[]> = RemoveMarked<{
36366
36366
  *
36367
36367
  * **Related:** `Retain`, `RetainLiterals`, `FilterWideTypes`
36368
36368
  */
36369
- type RetainWideTypes<T extends readonly unknown[]> = Process$l<T> extends readonly unknown[] ? Process$l<T> : never;
36369
+ type RetainWideTypes<T extends readonly unknown[]> = Process$m<T> extends readonly unknown[] ? Process$m<T> : never;
36370
36370
 
36371
36371
  /**
36372
36372
  * **ReturnTypes**`<T>`
@@ -36421,8 +36421,8 @@ type RemoveStart<TList extends readonly unknown[], TStart extends number> = TSta
36421
36421
  ...(infer REST)
36422
36422
  ] ? REST : Throw<"invalid-start-index">;
36423
36423
  type TruncateAtLen<TList extends readonly unknown[], TLen extends number> = IsNegativeNumber<TLen> extends true ? If<IsGreaterThan<Abs<TLen>, TList["length"]>, never, TakeFirst<TList, Add<TList["length"], TLen>>> : If<IsGreaterThanOrEqual<TLen, TList["length"]>, TList, TakeFirst<TList, TLen>>;
36424
- type Process$k<TList extends readonly unknown[], TStart extends number, TLen extends number | undefined> = TList extends readonly unknown[] ? RemoveStart<TList, TStart> extends readonly unknown[] ? If<IsNumericLiteral<TLen>, TruncateAtLen<RemoveStart<TList, TStart>, As<TLen, number>>, RemoveStart<TList, TStart>> : RemoveStart<TList, TStart> : never;
36425
- type PreProcess<TList extends readonly unknown[], TStart extends number, TLen extends number | undefined = undefined> = TList extends string ? Chars<TList> extends readonly string[] ? Concat<As<Process$k<Chars<TList>, TStart, TLen>, readonly string[]>> : never : TList extends readonly unknown[] ? Process$k<TList, TStart, TLen> : never;
36424
+ type Process$l<TList extends readonly unknown[], TStart extends number, TLen extends number | undefined> = TList extends readonly unknown[] ? RemoveStart<TList, TStart> extends readonly unknown[] ? If<IsNumericLiteral<TLen>, TruncateAtLen<RemoveStart<TList, TStart>, As<TLen, number>>, RemoveStart<TList, TStart>> : RemoveStart<TList, TStart> : never;
36425
+ type PreProcess<TList extends readonly unknown[], TStart extends number, TLen extends number | undefined = undefined> = TList extends string ? Chars<TList> extends readonly string[] ? Concat<As<Process$l<Chars<TList>, TStart, TLen>, readonly string[]>> : never : TList extends readonly unknown[] ? Process$l<TList, TStart, TLen> : never;
36426
36426
  /**
36427
36427
  * **Slice**`<TList, TStart, TLen>`
36428
36428
  *
@@ -36436,7 +36436,7 @@ type PreProcess<TList extends readonly unknown[], TStart extends number, TLen ex
36436
36436
  */
36437
36437
  type Slice<TList extends readonly unknown[] | string, TStart extends number, TLen extends number | undefined = undefined> = TList extends string ? Concat<As<PreProcess<Chars<TList>, TStart, TLen>, readonly string[]>> : TList extends readonly unknown[] ? PreProcess<TList, TStart, TLen> extends readonly unknown[] ? PreProcess<TList, TStart, TLen> : never : never;
36438
36438
 
36439
- type Process$j<TContent extends readonly unknown[], TLen extends number, TIdx extends number = 0, TResult extends readonly unknown[] = []> = [] extends TContent ? TResult : If<IsGreaterThanOrEqual<TIdx, TLen>, TResult, Process$j<AfterFirst<TContent>, TLen, Increment<TIdx>, [
36439
+ type Process$k<TContent extends readonly unknown[], TLen extends number, TIdx extends number = 0, TResult extends readonly unknown[] = []> = [] extends TContent ? TResult : If<IsGreaterThanOrEqual<TIdx, TLen>, TResult, Process$k<AfterFirst<TContent>, TLen, Increment<TIdx>, [
36440
36440
  ...TResult,
36441
36441
  First<TContent>
36442
36442
  ]>>;
@@ -36453,7 +36453,7 @@ type Process$j<TContent extends readonly unknown[], TLen extends number, TIdx ex
36453
36453
  * - if you want a precise length, then set `THandle` to "throw" and
36454
36454
  * an error will be thrown.
36455
36455
  */
36456
- type TakeFirst<TContent extends readonly unknown[], TLen extends number, THandle extends "ignore" | "throw" = "ignore"> = If<IsGreaterThan<TLen, TContent["length"]>, If<THandle extends "ignore" ? true : false, TContent, Throw<"invalid-length", `TakeFirst<TContent,TLen> was called where the length of TLen(${TLen}) was greater than the length of the content (${TContent["length"]})!`>>, If<IsEqual<TLen, TContent["length"]>, TContent, Process$j<TContent, TLen>>>;
36456
+ type TakeFirst<TContent extends readonly unknown[], TLen extends number, THandle extends "ignore" | "throw" = "ignore"> = If<IsGreaterThan<TLen, TContent["length"]>, If<THandle extends "ignore" ? true : false, TContent, Throw<"invalid-length", `TakeFirst<TContent,TLen> was called where the length of TLen(${TLen}) was greater than the length of the content (${TContent["length"]})!`>>, If<IsEqual<TLen, TContent["length"]>, TContent, Process$k<TContent, TLen>>>;
36457
36457
 
36458
36458
  /**
36459
36459
  * **TakeLast**`<TContent,TLen,[THandle]>`
@@ -36470,7 +36470,7 @@ type TakeFirst<TContent extends readonly unknown[], TLen extends number, THandle
36470
36470
  */
36471
36471
  type TakeLast<TContent extends readonly unknown[], TLen extends number, THandle extends "ignore" | "throw" = "ignore"> = TakeFirst<Reverse<TContent>, TLen, THandle>;
36472
36472
 
36473
- type Process$i<T extends Tuple, TReplace extends string, TResult extends string = ""> = [] extends T ? StripLeading<TResult, ","> : Process$i<AfterFirst<T>, TReplace, First<T> extends string ? `${TResult},${Replace<First<T>, ",", TReplace>}` : `${TResult},${AsString<First<T>>}`>;
36473
+ type Process$j<T extends Tuple, TReplace extends string, TResult extends string = ""> = [] extends T ? StripLeading<TResult, ","> : Process$j<AfterFirst<T>, TReplace, First<T> extends string ? `${TResult},${Replace<First<T>, ",", TReplace>}` : `${TResult},${AsString<First<T>>}`>;
36474
36474
  /**
36475
36475
  * **ToCSV**`<TTuple,[TReplace]>`
36476
36476
  *
@@ -36479,7 +36479,7 @@ type Process$i<T extends Tuple, TReplace extends string, TResult extends string
36479
36479
  * be replaced with the value of `TReplace` (which defaults
36480
36480
  * to `<comma>`).
36481
36481
  */
36482
- type ToCSV<TTuple extends Tuple, TReplace extends string = "<comma>"> = Process$i<TTuple, TReplace>;
36482
+ type ToCSV<TTuple extends Tuple, TReplace extends string = "<comma>"> = Process$j<TTuple, TReplace>;
36483
36483
 
36484
36484
  /**
36485
36485
  * **TruthyReturns**`<T>`
@@ -36545,13 +36545,13 @@ type ProcessTuple$1<T extends Container, TKeys extends readonly number[], TResul
36545
36545
  type RemoveNever<T extends Container> = T extends readonly unknown[] ? ProcessTuple$1<T, NumericKeys<T>> : T extends Dictionary ? ProcessObj$1<T, _Keys$2<T>> : never;
36546
36546
 
36547
36547
  type _Keys$1<T extends object> = UnionToTuple$1<keyof RemoveIndexKeys<T>> extends readonly ObjectKey[] ? UnionToTuple$1<keyof RemoveIndexKeys<T>> : never;
36548
- type Process$h<T extends Container, TKeys extends readonly PropertyKey[], TResults extends Container = T extends readonly unknown[] ? [] : EmptyObject> = [] extends TKeys ? TResults : First<TKeys> extends keyof T ? IsUndefined<T[First<TKeys>]> extends true ? Process$h<T, AfterFirst<TKeys>, TResults> : Process$h<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;
36548
+ type Process$i<T extends Container, TKeys extends readonly PropertyKey[], TResults extends Container = T extends readonly unknown[] ? [] : EmptyObject> = [] extends TKeys ? TResults : First<TKeys> extends keyof T ? IsUndefined<T[First<TKeys>]> extends true ? Process$i<T, AfterFirst<TKeys>, TResults> : Process$i<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;
36549
36549
  /**
36550
36550
  * **RemoveUndefined**`<T>`
36551
36551
  *
36552
36552
  * Removes all the elements from `T` which are typed as _undefined_.
36553
36553
  */
36554
- type RemoveUndefined<T extends Container> = Process$h<T, T extends Tuple ? NumericKeys<T> : _Keys$1<T>>;
36554
+ type RemoveUndefined<T extends Container> = Process$i<T, T extends Tuple ? NumericKeys<T> : _Keys$1<T>>;
36555
36555
 
36556
36556
  /**
36557
36557
  * **AddKeyValue**`<TObj,TKey,TVal>`
@@ -36569,7 +36569,7 @@ type _Keys<T extends object> = UnionToTuple$1<keyof RemoveIndexKeys<T>>;
36569
36569
  type GetKeys<T extends object> = IsVueRef<T> extends true ? ["value"] : _Keys<T> extends [symbol] ? ObjectKey[] : _Keys<T> extends [] ? UnionToTuple$1<keyof T> extends [ObjectKey] ? (keyof T)[] : ObjectKey[] : _Keys<T>;
36570
36570
  type ProcessObj<TContainer extends object> = GetKeys<TContainer>;
36571
36571
  type ProcessTuple<TContainer extends readonly unknown[]> = NumericKeys<TContainer> extends readonly number[] ? NumericKeys<TContainer> : never;
36572
- type Process$g<TContainer extends AnyObject> = [IsObjectLiteral<RemoveIndexKeys<TContainer>>] extends [true] ? ProcessObj<RemoveIndexKeys<TContainer>> extends readonly (keyof TContainer & ObjectKey)[] ? As<ProcessObj<RemoveIndexKeys<TContainer>>, readonly ObjectKey[]> : never : ObjectKey[];
36572
+ type Process$h<TContainer extends AnyObject> = [IsObjectLiteral<RemoveIndexKeys<TContainer>>] extends [true] ? ProcessObj<RemoveIndexKeys<TContainer>> extends readonly (keyof TContainer & ObjectKey)[] ? As<ProcessObj<RemoveIndexKeys<TContainer>>, readonly ObjectKey[]> : never : ObjectKey[];
36573
36573
  /**
36574
36574
  * **Keys**`<TContainer>`
36575
36575
  *
@@ -36586,7 +36586,7 @@ type Process$g<TContainer extends AnyObject> = [IsObjectLiteral<RemoveIndexKeys<
36586
36586
  *
36587
36587
  * **Related:** `ValidKey`, `PublicKeys`
36588
36588
  */
36589
- type Keys<TContainer extends Tuple | AnyObject> = TContainer extends Tuple ? ProcessTuple<TContainer> : TContainer extends AnyObject ? Process$g<TContainer> extends readonly ObjectKey[] ? Process$g<TContainer> : never : never;
36589
+ type Keys<TContainer extends Tuple | AnyObject> = TContainer extends Tuple ? ProcessTuple<TContainer> : TContainer extends AnyObject ? Process$h<TContainer> extends readonly ObjectKey[] ? Process$h<TContainer> : never : never;
36590
36590
  type _Public<TInput extends readonly PropertyKey[], TOutput extends readonly PropertyKey[] = []> = [] extends TInput ? TOutput : _Public<AfterFirst<TInput>, First<TInput> extends `_${string}` ? TOutput : [...TOutput, First<TInput>]>;
36591
36591
  /**
36592
36592
  * **PublicKeys**`<TContainer>`
@@ -36693,12 +36693,12 @@ type OptionalKeys<T extends AnyObject, V = Unset> = {
36693
36693
  */
36694
36694
  type OptionalKeysTuple<T extends AnyObject> = UnionToTuple$1<OptionalKeys<T>>;
36695
36695
 
36696
- type Process$f<TObj extends Dictionary, TKeys extends readonly (ObjectKey & keyof TObj)[], TResult extends Dictionary = EmptyObject> = [] extends TKeys ? ExpandDictionary<TResult> : Process$f<TObj, AfterFirst<TKeys>, First<TKeys> extends string ? Record<CamelCase<First<TKeys>>, TObj[First<TKeys>]> & TResult : Record<First<TKeys>, TObj[First<TKeys>]> & TResult>;
36696
+ type Process$g<TObj extends Dictionary, TKeys extends readonly (ObjectKey & keyof TObj)[], TResult extends Dictionary = EmptyObject> = [] extends TKeys ? ExpandDictionary<TResult> : Process$g<TObj, AfterFirst<TKeys>, First<TKeys> extends string ? Record<CamelCase<First<TKeys>>, TObj[First<TKeys>]> & TResult : Record<First<TKeys>, TObj[First<TKeys>]> & TResult>;
36697
36697
  /**
36698
36698
  * Converts an object's keys to the **camelCase** equivalent
36699
36699
  * while keeping the values the same.
36700
36700
  */
36701
- type CamelKeys<T extends Dictionary> = MakeKeysOptional<Process$f<T, Keys<T>>, OptionalKeys<T> extends string ? UnionMutate<OptionalKeys<T>, "CamelCase"> extends string ? UnionMutate<OptionalKeys<T>, "CamelCase"> : "" : "">;
36701
+ type CamelKeys<T extends Dictionary> = MakeKeysOptional<Process$g<T, Keys<T>>, OptionalKeys<T> extends string ? UnionMutate<OptionalKeys<T>, "CamelCase"> extends string ? UnionMutate<OptionalKeys<T>, "CamelCase"> : "" : "">;
36702
36702
 
36703
36703
  /**
36704
36704
  * **CombinedKeys**`<A,B>`
@@ -36734,7 +36734,7 @@ interface ConstrainedObjectIdentity<TConstraint extends AnyObject> {
36734
36734
  asCallback: ConstrainedObjectCallback<TConstraint>;
36735
36735
  }
36736
36736
 
36737
- type Process$e<TKeys extends readonly string[], TValue, TObj extends Dictionary = EmptyObject> = [] extends TKeys ? TObj : Process$e<AfterFirst<TKeys>, TValue, TObj & Record<First<TKeys>, TValue>>;
36737
+ type Process$f<TKeys extends readonly string[], TValue, TObj extends Dictionary = EmptyObject> = [] extends TKeys ? TObj : Process$f<AfterFirst<TKeys>, TValue, TObj & Record<First<TKeys>, TValue>>;
36738
36738
  /**
36739
36739
  * **CreateKV**`<TKeys,[TValue]>`
36740
36740
  *
@@ -36742,15 +36742,15 @@ type Process$e<TKeys extends readonly string[], TValue, TObj extends Dictionary
36742
36742
  * as `TKeys` and with all properties set to the value
36743
36743
  * of `TValue` (which defaults to `unknown`)
36744
36744
  */
36745
- type CreateKV<TKeys extends readonly string[], TValue = unknown> = ExpandRecursively<Process$e<TKeys, TValue>>;
36745
+ type CreateKV<TKeys extends readonly string[], TValue = unknown> = ExpandRecursively<Process$f<TKeys, TValue>>;
36746
36746
 
36747
- type Process$d<TPayload extends readonly Record<ObjectKey, unknown>[], TKeyProp extends string, TValProp extends string, TOutput extends Record<ObjectKey, unknown> = NonNullable<unknown>> = [] extends TPayload ? TOutput : TKeyProp extends keyof First<TPayload> ? TValProp extends keyof First<TPayload> ? Process$d<AfterFirst<TPayload>, TKeyProp, TValProp, First<TPayload>[TKeyProp] extends ObjectKey ? TOutput & Record<First<TPayload>[TKeyProp], First<TPayload>[TValProp]> : TOutput & Record<AsString<First<TPayload>[TKeyProp]>, First<TPayload>[TValProp]>> : Process$d<AfterFirst<TPayload>, TKeyProp, TValProp, TOutput> : Process$d<AfterFirst<TPayload>, TKeyProp, TValProp, TOutput>;
36747
+ type Process$e<TPayload extends readonly Record<ObjectKey, unknown>[], TKeyProp extends string, TValProp extends string, TOutput extends Record<ObjectKey, unknown> = NonNullable<unknown>> = [] extends TPayload ? TOutput : TKeyProp extends keyof First<TPayload> ? TValProp extends keyof First<TPayload> ? Process$e<AfterFirst<TPayload>, TKeyProp, TValProp, First<TPayload>[TKeyProp] extends ObjectKey ? TOutput & Record<First<TPayload>[TKeyProp], First<TPayload>[TValProp]> : TOutput & Record<AsString<First<TPayload>[TKeyProp]>, First<TPayload>[TValProp]>> : Process$e<AfterFirst<TPayload>, TKeyProp, TValProp, TOutput> : Process$e<AfterFirst<TPayload>, TKeyProp, TValProp, TOutput>;
36748
36748
  /**
36749
36749
  * **CreateLookup**
36750
36750
  *
36751
36751
  * Creates a dictionary lookup from a Tuple of similarly typed objects.
36752
36752
  */
36753
- type CreateLookup<TPayload extends readonly Record<ObjectKey, unknown>[], TKeyProp extends string, TValProp extends string> = ExpandRecursively<Process$d<TPayload, TKeyProp, TValProp>>;
36753
+ type CreateLookup<TPayload extends readonly Record<ObjectKey, unknown>[], TKeyProp extends string, TValProp extends string> = ExpandRecursively<Process$e<TPayload, TKeyProp, TValProp>>;
36754
36754
 
36755
36755
  type StringLiteralVar = "string" | "number" | "boolean" | "Metric" | "OptSpace" | "CountryCode" | "CountryCode2" | "CountryCode3" | "UsState" | "UsStateName" | "Zip5" | "ZipCode";
36756
36756
  type BaseConvert<T extends string> = ReplaceAll<ReplaceAll<ReplaceAll<T, `{{${OptSpace}string${OptSpace}}}`, `${string}`>, `{{${OptSpace}number${OptSpace}}}`, `${number}`>, `{{${OptSpace}boolean${OptSpace}}}`, `${boolean}`>;
@@ -37721,7 +37721,7 @@ type BuildObj<T extends readonly string[] | Dictionary | [Dictionary], TType> =
37721
37721
  */
37722
37722
  type EnsureKeys<TObj extends object, TKeys extends readonly string[] | Dictionary | [Dictionary], TType = unknown> = ExpandRecursively<TObj & BuildObj<TKeys, TType>>;
37723
37723
 
37724
- type Process$c<TObj extends Dictionary, TComparator, TOp extends ComparatorOperation, TKeys extends readonly ObjectKey[], TResult extends Dictionary = EmptyObject> = [] extends TKeys ? ExpandDictionary<TResult> : Process$c<TObj, TComparator, TOp, AfterFirst<TKeys>, Compare$1<TObj[First<TKeys>], TOp, TComparator> extends true ? TResult : TResult & Record<First<TKeys>, TObj[First<TKeys>]>>;
37724
+ type Process$d<TObj extends Dictionary, TComparator, TOp extends ComparatorOperation, TKeys extends readonly ObjectKey[], TResult extends Dictionary = EmptyObject> = [] extends TKeys ? ExpandDictionary<TResult> : Process$d<TObj, TComparator, TOp, AfterFirst<TKeys>, Compare$1<TObj[First<TKeys>], TOp, TComparator> extends true ? TResult : TResult & Record<First<TKeys>, TObj[First<TKeys>]>>;
37725
37725
  /**
37726
37726
  * **FilterProps**`<TObj, TComparator, [TOp]>`
37727
37727
  *
@@ -37732,7 +37732,7 @@ type Process$c<TObj extends Dictionary, TComparator, TOp extends ComparatorOpera
37732
37732
  * "extends" but you can change the comparison operation to
37733
37733
  * `equals`, `startsWith`, `endsWith`, ...
37734
37734
  */
37735
- type FilterProps<TObj extends Dictionary, TComparator, TOp extends ComparatorOperation = "extends"> = Process$c<TObj, TComparator, TOp, Keys<TObj>>;
37735
+ type FilterProps<TObj extends Dictionary, TComparator, TOp extends ComparatorOperation = "extends"> = Process$d<TObj, TComparator, TOp, Keys<TObj>>;
37736
37736
 
37737
37737
  /**
37738
37738
  * **FromMaybeRef**`<T>`
@@ -37742,12 +37742,12 @@ type FilterProps<TObj extends Dictionary, TComparator, TOp extends ComparatorOpe
37742
37742
  */
37743
37743
  type FromMaybeRef<T> = IsVueRef<T> extends true ? "value" extends keyof T ? T["value"] : never : T;
37744
37744
 
37745
- type Process$b<TObj extends Dictionary, TKeys extends readonly (ObjectKey & keyof TObj)[], TResult extends Dictionary = EmptyObject> = [] extends TKeys ? ExpandDictionary<TResult> : Process$b<TObj, AfterFirst<TKeys>, First<TKeys> extends string ? Record<KebabCase<First<TKeys>>, TObj[First<TKeys>]> & TResult : Record<First<TKeys>, TObj[First<TKeys>]> & TResult>;
37745
+ type Process$c<TObj extends Dictionary, TKeys extends readonly (ObjectKey & keyof TObj)[], TResult extends Dictionary = EmptyObject> = [] extends TKeys ? ExpandDictionary<TResult> : Process$c<TObj, AfterFirst<TKeys>, First<TKeys> extends string ? Record<KebabCase<First<TKeys>>, TObj[First<TKeys>]> & TResult : Record<First<TKeys>, TObj[First<TKeys>]> & TResult>;
37746
37746
  /**
37747
37747
  * Converts an object's keys to the **kebab-case** equivalent
37748
37748
  * while keeping the values the same.
37749
37749
  */
37750
- type KebabKeys<T extends Dictionary> = MakeKeysOptional<Process$b<T, Keys<T>>, OptionalKeys<T> extends string ? UnionMutate<OptionalKeys<T>, "KebabCase"> extends string ? UnionMutate<OptionalKeys<T>, "KebabCase"> : "" : "">;
37750
+ type KebabKeys<T extends Dictionary> = MakeKeysOptional<Process$c<T, Keys<T>>, OptionalKeys<T> extends string ? UnionMutate<OptionalKeys<T>, "KebabCase"> extends string ? UnionMutate<OptionalKeys<T>, "KebabCase"> : "" : "">;
37751
37751
 
37752
37752
  /**
37753
37753
  * **KeysEqualValue**`<TObj,TValue>`
@@ -37795,7 +37795,7 @@ type KeysWithoutValue<TObj extends AnyObject, TValue extends Narrowable> = {
37795
37795
  [K in keyof TObj]: TObj[K] extends TValue ? never : Readonly<K>;
37796
37796
  }[keyof TObj];
37797
37797
 
37798
- type Process$a<TKeys extends readonly ObjectKey[], TObj extends Dictionary, TValue, TResults extends readonly ObjectKey[] = []> = [] extends TKeys ? TResults : [First<TKeys>] extends [keyof TObj] ? [IsFunction<TValue>] extends [true] ? [IsFunction<TObj[First<TKeys>]>] extends [true] ? Process$a<AfterFirst<TKeys>, TObj, TValue, [...TResults, First<TKeys>]> : Process$a<AfterFirst<TKeys>, TObj, TValue, TResults> : [TObj[First<TKeys>]] extends [TValue] ? Process$a<AfterFirst<TKeys>, TObj, TValue, [...TResults, First<TKeys>]> : Process$a<AfterFirst<TKeys>, TObj, TValue, TResults> : never;
37798
+ type Process$b<TKeys extends readonly ObjectKey[], TObj extends Dictionary, TValue, TResults extends readonly ObjectKey[] = []> = [] extends TKeys ? TResults : [First<TKeys>] extends [keyof TObj] ? [IsFunction<TValue>] extends [true] ? [IsFunction<TObj[First<TKeys>]>] extends [true] ? Process$b<AfterFirst<TKeys>, TObj, TValue, [...TResults, First<TKeys>]> : Process$b<AfterFirst<TKeys>, TObj, TValue, TResults> : [TObj[First<TKeys>]] extends [TValue] ? Process$b<AfterFirst<TKeys>, TObj, TValue, [...TResults, First<TKeys>]> : Process$b<AfterFirst<TKeys>, TObj, TValue, TResults> : never;
37799
37799
  /**
37800
37800
  * **KeysWithValue**`<TObj,TValue>`
37801
37801
  *
@@ -37809,7 +37809,7 @@ type Process$a<TKeys extends readonly ObjectKey[], TObj extends Dictionary, TVal
37809
37809
  *
37810
37810
  * **Related:** `KeysEqualValue`
37811
37811
  */
37812
- type KeysWithValue<TObj extends Dictionary, TValue> = [IsObjectLiteral<TObj>] extends [true] ? Process$a<Keys<TObj>, TObj, TValue> : ObjectKey[];
37812
+ type KeysWithValue<TObj extends Dictionary, TValue> = [IsObjectLiteral<TObj>] extends [true] ? Process$b<Keys<TObj>, TObj, TValue> : ObjectKey[];
37813
37813
 
37814
37814
  /**
37815
37815
  * **KvFnDefn**
@@ -38117,9 +38117,9 @@ type MapCardinalityFrom<T extends MapperOld> = T extends MapperOld<any, any, inf
38117
38117
  */
38118
38118
  type MaybeRef<T> = T | VueRef<T>;
38119
38119
 
38120
- type Process$9<TInput extends readonly {
38120
+ type Process$a<TInput extends readonly {
38121
38121
  [key: string]: unknown;
38122
- }[], TOutput extends Dictionary = EmptyObject> = [] extends TInput ? TOutput extends Record<string, unknown> ? ExpandRecursively<TOutput> : never : Process$9<AfterFirst<TInput>, First<TInput> extends keyof TOutput ? TOutput : TOutput & First<TInput>>;
38122
+ }[], TOutput extends Dictionary = EmptyObject> = [] extends TInput ? TOutput extends Record<string, unknown> ? ExpandRecursively<TOutput> : never : Process$a<AfterFirst<TInput>, First<TInput> extends keyof TOutput ? TOutput : TOutput & First<TInput>>;
38123
38123
  /**
38124
38124
  * **MergeKVs**`<TKVs>`
38125
38125
  *
@@ -38130,7 +38130,7 @@ type Process$9<TInput extends readonly {
38130
38130
  */
38131
38131
  type MergeKVs<TInput extends readonly {
38132
38132
  [key: string]: unknown;
38133
- }[]> = Process$9<TInput>;
38133
+ }[]> = Process$a<TInput>;
38134
38134
 
38135
38135
  /**
38136
38136
  * **MutableProps**`<T>`
@@ -38170,12 +38170,12 @@ type NonStringKeys<T extends AnyObject> = {
38170
38170
  */
38171
38171
  type OptionalProps<T extends object> = EmptyObject extends RemoveIndexKeys<Pick<T, OptionalKeys<T>>> ? RemoveIndexKeys<Pick<T, OptionalKeys<T>>> : never;
38172
38172
 
38173
- type Process$8<TObj extends Dictionary, TKeys extends readonly (ObjectKey & keyof TObj)[], TResult extends Dictionary = EmptyObject> = [] extends TKeys ? ExpandDictionary<TResult> : Process$8<TObj, AfterFirst<TKeys>, First<TKeys> extends string ? Record<PascalCase<First<TKeys>>, TObj[First<TKeys>]> & TResult : Record<First<TKeys>, TObj[First<TKeys>]> & TResult>;
38173
+ type Process$9<TObj extends Dictionary, TKeys extends readonly (ObjectKey & keyof TObj)[], TResult extends Dictionary = EmptyObject> = [] extends TKeys ? ExpandDictionary<TResult> : Process$9<TObj, AfterFirst<TKeys>, First<TKeys> extends string ? Record<PascalCase<First<TKeys>>, TObj[First<TKeys>]> & TResult : Record<First<TKeys>, TObj[First<TKeys>]> & TResult>;
38174
38174
  /**
38175
38175
  * Converts an object's keys to the **camelCase** equivalent
38176
38176
  * while keeping the values the same.
38177
38177
  */
38178
- type PascalKeys<T extends Dictionary> = MakeKeysOptional<Process$8<T, Keys<T>>, OptionalKeys<T> extends string ? UnionMutate<OptionalKeys<T>, "PascalCase"> extends string ? UnionMutate<OptionalKeys<T>, "PascalCase"> : "" : "">;
38178
+ type PascalKeys<T extends Dictionary> = MakeKeysOptional<Process$9<T, Keys<T>>, OptionalKeys<T> extends string ? UnionMutate<OptionalKeys<T>, "PascalCase"> extends string ? UnionMutate<OptionalKeys<T>, "PascalCase"> : "" : "">;
38179
38179
 
38180
38180
  type MyEqual<A, B> = (<X>() => X extends A ? 0 : 1) extends <X>() => X extends B ? 0 : 1 ? true : false;
38181
38181
  type isReadonly<T, K extends keyof T> = MyEqual<{
@@ -38250,7 +38250,7 @@ type RequiredProps<T extends AnyObject> = Pick<T, RequiredKeys<T>>;
38250
38250
  */
38251
38251
  type RequireProps<T extends EmptyObject, R extends keyof T> = ExpandRecursively<Required<Pick<T, R>> & T>;
38252
38252
 
38253
- type Process$7<TObj extends Dictionary, TComparator, TOp extends ComparatorOperation, TKeys extends readonly ObjectKey[], TResult extends Dictionary = EmptyObject> = [] extends TKeys ? ExpandDictionary<TResult> : Process$7<TObj, TComparator, TOp, AfterFirst<TKeys>, Compare$1<TObj[First<TKeys>], TOp, TComparator> extends true ? TResult & Record<First<TKeys>, TObj[First<TKeys>]> : TResult>;
38253
+ type Process$8<TObj extends Dictionary, TComparator, TOp extends ComparatorOperation, TKeys extends readonly ObjectKey[], TResult extends Dictionary = EmptyObject> = [] extends TKeys ? ExpandDictionary<TResult> : Process$8<TObj, TComparator, TOp, AfterFirst<TKeys>, Compare$1<TObj[First<TKeys>], TOp, TComparator> extends true ? TResult & Record<First<TKeys>, TObj[First<TKeys>]> : TResult>;
38254
38254
  /**
38255
38255
  * **RetainProps**`<TObj, TComparator, [TOp]>`
38256
38256
  *
@@ -38261,7 +38261,7 @@ type Process$7<TObj extends Dictionary, TComparator, TOp extends ComparatorOpera
38261
38261
  * "extends" but you can change the comparison operation to
38262
38262
  * `equals`, `startsWith`, `endsWith`, ...
38263
38263
  */
38264
- type RetainProps<TObj extends Dictionary, TComparator, TOp extends ComparatorOperation = "extends"> = Process$7<TObj, TComparator, TOp, Keys<TObj>>;
38264
+ type RetainProps<TObj extends Dictionary, TComparator, TOp extends ComparatorOperation = "extends"> = Process$8<TObj, TComparator, TOp, Keys<TObj>>;
38265
38265
 
38266
38266
  /**
38267
38267
  * **SetKeyStrict**`<TObj,TKey,TVal>
@@ -38333,12 +38333,12 @@ type SharedKeys<A extends Record<ObjectKey, unknown> | object, B extends Record<
38333
38333
  */
38334
38334
  type SimplifyObject<T extends object> = ExpandRecursively<UnionToIntersection<ExpandRecursively<T>>>;
38335
38335
 
38336
- type Process$6<TObj extends Dictionary, TKeys extends readonly (ObjectKey & keyof TObj)[], TResult extends Dictionary = EmptyObject> = [] extends TKeys ? ExpandDictionary<TResult> : Process$6<TObj, AfterFirst<TKeys>, First<TKeys> extends string ? Record<SnakeCase<First<TKeys>>, TObj[First<TKeys>]> & TResult : Record<First<TKeys>, TObj[First<TKeys>]> & TResult>;
38336
+ type Process$7<TObj extends Dictionary, TKeys extends readonly (ObjectKey & keyof TObj)[], TResult extends Dictionary = EmptyObject> = [] extends TKeys ? ExpandDictionary<TResult> : Process$7<TObj, AfterFirst<TKeys>, First<TKeys> extends string ? Record<SnakeCase<First<TKeys>>, TObj[First<TKeys>]> & TResult : Record<First<TKeys>, TObj[First<TKeys>]> & TResult>;
38337
38337
  /**
38338
38338
  * Converts an object's keys to the **kebab-case** equivalent
38339
38339
  * while keeping the values the same.
38340
38340
  */
38341
- type SnakeKeys<T extends Dictionary> = MakeKeysOptional<Process$6<T, Keys<T>>, OptionalKeys<T> extends string ? UnionMutate<OptionalKeys<T>, "SnakeCase"> extends string ? UnionMutate<OptionalKeys<T>, "SnakeCase"> : "" : "">;
38341
+ type SnakeKeys<T extends Dictionary> = MakeKeysOptional<Process$7<T, Keys<T>>, OptionalKeys<T> extends string ? UnionMutate<OptionalKeys<T>, "SnakeCase"> extends string ? UnionMutate<OptionalKeys<T>, "SnakeCase"> : "" : "">;
38342
38342
 
38343
38343
  /**
38344
38344
  * **KeysUnion**`<T>`
@@ -38371,7 +38371,7 @@ type SKeys<T extends AnyObject> = IsVueRef<T> extends true ? ["value"] : _SKeys<
38371
38371
  */
38372
38372
  type TakeProp<TTest, TProp extends PropertyKey, TElse = undefined> = TProp extends keyof TTest ? TTest[TProp] : TElse;
38373
38373
 
38374
- type Process$5<TObj extends AnyObject, K extends ObjectKey, V> = K extends keyof TObj ? Omit<TObj, K> & Record<K, V> : TObj & Record<K, V>;
38374
+ type Process$6<TObj extends AnyObject, K extends ObjectKey, V> = K extends keyof TObj ? Omit<TObj, K> & Record<K, V> : TObj & Record<K, V>;
38375
38375
  /**
38376
38376
  * **UpsertKeyValue**`<TObj,TKey,TVal>`
38377
38377
  *
@@ -38380,7 +38380,7 @@ type Process$5<TObj extends AnyObject, K extends ObjectKey, V> = K extends keyof
38380
38380
  *
38381
38381
  * **Related:** `AddKeyValue`
38382
38382
  */
38383
- type UpsertKeyValue<TObj extends AnyObject, K extends ObjectKey, V> = ExpandRecursively<Process$5<TObj, K, V>>;
38383
+ type UpsertKeyValue<TObj extends AnyObject, K extends ObjectKey, V> = ExpandRecursively<Process$6<TObj, K, V>>;
38384
38384
 
38385
38385
  /**
38386
38386
  * **ValidKey**<TContainer>
@@ -38392,7 +38392,7 @@ type UpsertKeyValue<TObj extends AnyObject, K extends ObjectKey, V> = ExpandRecu
38392
38392
  */
38393
38393
  type ValidKey<TContainer extends Container> = TupleToUnion<AsArray<Keys<TContainer>>>;
38394
38394
 
38395
- type Process$4<TKeys extends readonly ObjectKey[], TObj extends Record<ObjectKey, unknown>, TResult extends readonly unknown[] = []> = [] extends TKeys ? TResult : Process$4<AfterFirst<TKeys>, TObj, [
38395
+ type Process$5<TKeys extends readonly ObjectKey[], TObj extends Record<ObjectKey, unknown>, TResult extends readonly unknown[] = []> = [] extends TKeys ? TResult : Process$5<AfterFirst<TKeys>, TObj, [
38396
38396
  ...TResult,
38397
38397
  First<TKeys> extends keyof TObj ? TObj[First<TKeys>] : never
38398
38398
  ]>;
@@ -38404,7 +38404,7 @@ type Process$4<TKeys extends readonly ObjectKey[], TObj extends Record<ObjectKey
38404
38404
  * - for **tuples** this is just a _proxy_ of the type
38405
38405
  * - for _wide_ types like `string[]`
38406
38406
  */
38407
- type Values<T extends Container> = T extends Tuple ? T : T extends Dictionary ? Process$4<Keys<T> extends readonly ObjectKey[] ? Keys<T> : never, T> : T extends TypedFunction ? [T] : [];
38407
+ type Values<T extends Container> = T extends Tuple ? T : T extends Dictionary ? Process$5<Keys<T> extends readonly ObjectKey[] ? Keys<T> : never, T> : T extends TypedFunction ? [T] : [];
38408
38408
 
38409
38409
  type MakeIntoUnion<K extends PropertyKey | readonly PropertyKey[]> = K extends readonly PropertyKey[] ? TupleToUnion<K> : K;
38410
38410
  type MakeNumericIndex<T> = T;
@@ -38434,7 +38434,7 @@ type WithKeys<T extends AnyObject | Tuple, K extends PropertyKey | readonly Prop
38434
38434
  */
38435
38435
  type WithNumericKeys<T extends object> = Omit<T, NonNumericKeys<T>>;
38436
38436
 
38437
- type Process$3<TObj extends Dictionary, TKeys extends ObjectKey> = [] extends TKeys ? TObj : Omit<TObj, TKeys>;
38437
+ type Process$4<TObj extends Dictionary, TKeys extends ObjectKey> = [] extends TKeys ? TObj : Omit<TObj, TKeys>;
38438
38438
  /**
38439
38439
  * **WithoutKeys**`<TObj, TKeys>`
38440
38440
  *
@@ -38442,7 +38442,7 @@ type Process$3<TObj extends Dictionary, TKeys extends ObjectKey> = [] extends TK
38442
38442
  * functionally equivalent to the `Omit<T,U>` built-in but rather than
38443
38443
  * taking a union type it takes an array of keys.
38444
38444
  */
38445
- type WithoutKeys<TObj extends Dictionary, TKeys extends ObjectKey | readonly ObjectKey[]> = TKeys extends readonly ObjectKey[] ? Process$3<TObj, TupleToUnion<TKeys>> : ExpandDictionary<Process$3<TObj, TKeys extends readonly ObjectKey[] ? TupleToUnion<TKeys> : TKeys>>;
38445
+ type WithoutKeys<TObj extends Dictionary, TKeys extends ObjectKey | readonly ObjectKey[]> = TKeys extends readonly ObjectKey[] ? Process$4<TObj, TupleToUnion<TKeys>> : ExpandDictionary<Process$4<TObj, TKeys extends readonly ObjectKey[] ? TupleToUnion<TKeys> : TKeys>>;
38446
38446
 
38447
38447
  /**
38448
38448
  * **WithoutValue**
@@ -38469,7 +38469,7 @@ type WithoutValue<TObj extends AnyObject, TValue extends Narrowable> = ExpandRec
38469
38469
  type WithStringKeys<T extends AnyObject> = Omit<T, NonStringKeys<T>>;
38470
38470
 
38471
38471
  type Marked$1 = typeof MARKED;
38472
- type Process$2<TObj extends Dictionary, TValue, TOp extends "equals" | "extends"> = RemoveMarked<{
38472
+ type Process$3<TObj extends Dictionary, TValue, TOp extends "equals" | "extends"> = RemoveMarked<{
38473
38473
  [K in keyof TObj]: If<Compare$1<TObj[K], TOp, TValue>, TObj[K], Marked$1>;
38474
38474
  }>;
38475
38475
  /**
@@ -38485,7 +38485,7 @@ type Process$2<TObj extends Dictionary, TValue, TOp extends "equals" | "extends"
38485
38485
  *
38486
38486
  * **Related:** `WithoutValue`, `WithKeys`, `WithoutKeys`
38487
38487
  */
38488
- type WithValue<TObj extends Dictionary, TValue, TOp extends "equals" | "extends" = "extends"> = ExpandRecursively<Process$2<TObj, TValue, TOp>>;
38488
+ type WithValue<TObj extends Dictionary, TValue, TOp extends "equals" | "extends" = "extends"> = ExpandRecursively<Process$3<TObj, TValue, TOp>>;
38489
38489
 
38490
38490
  /**
38491
38491
  * **Left**<T>
@@ -38786,7 +38786,7 @@ interface KeyValue<K = ObjectKey, V = any> {
38786
38786
  */
38787
38787
  type KvTuple<T, K extends keyof T> = [K, Record<K, T[K]>];
38788
38788
 
38789
- type Process$1<TObj extends AnyObject, TKeys extends readonly (ObjectKey & keyof TObj)[], TKv extends readonly KeyValue[] = []> = [] extends TKeys ? TKv : Process$1<TObj, AfterFirst<TKeys>, [
38789
+ type Process$2<TObj extends AnyObject, TKeys extends readonly (ObjectKey & keyof TObj)[], TKv extends readonly KeyValue[] = []> = [] extends TKeys ? TKv : Process$2<TObj, AfterFirst<TKeys>, [
38790
38790
  ...TKv,
38791
38791
  {
38792
38792
  key: First<TKeys>;
@@ -38815,7 +38815,7 @@ type Process$1<TObj extends AnyObject, TKeys extends readonly (ObjectKey & keyof
38815
38815
  *
38816
38816
  * **Related:** `KeyValue`, `FromKv`
38817
38817
  */
38818
- 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$1<TObj, TKeys> : Array<{
38818
+ 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
38819
  [K in keyof TObj]: {
38820
38820
  key: K;
38821
38821
  value: TObj[K];
@@ -38965,7 +38965,7 @@ type SetCandidate = readonly unknown[] | Narrowable;
38965
38965
 
38966
38966
  type Get<TValue, TDeref extends PropertyKey | never> = IfNever<TDeref, TValue, // just proxy value back
38967
38967
  TDeref extends keyof TValue ? TValue[TDeref] : TValue extends Container ? never : TValue>;
38968
- type Process<TValues extends readonly unknown[], TDeref extends string | number | never, TResults extends readonly unknown[] = []> = [] extends TValues ? TResults : Process<AfterFirst<TValues>, TDeref, Push<TResults, First<TResults>, IsScalar<First<TValues>> extends true ? Not<Contains<TResults, First<TValues>>> : Not<Contains<As<IsNever<TDeref> extends true ? TResults : GetEach<TResults, AsString<TDeref>>, string | number | readonly unknown[]>, Get<First<TValues>, TDeref>>>>>;
38968
+ type Process$1<TValues extends readonly unknown[], TDeref extends string | number | never, TResults extends readonly unknown[] = []> = [] extends TValues ? TResults : Process$1<AfterFirst<TValues>, TDeref, Push<TResults, First<TResults>, IsScalar<First<TValues>> extends true ? Not<Contains<TResults, First<TValues>>> : Not<Contains<As<IsNever<TDeref> extends true ? TResults : GetEach<TResults, AsString<TDeref>>, string | number | readonly unknown[]>, Get<First<TValues>, TDeref>>>>>;
38969
38969
  /**
38970
38970
  * **Unique**`<TList, [TDeref]>`
38971
38971
  *
@@ -38982,7 +38982,7 @@ type Process<TValues extends readonly unknown[], TDeref extends string | number
38982
38982
  * type FooBar = Unique<["foo","foo","bar"]>;
38983
38983
  * ```
38984
38984
  */
38985
- type Unique<TList extends readonly unknown[], TDeref extends string | number | never = never> = IfNever<TDeref, UnionToTuple$1<TupleToUnion<TList>>, Process<TList, TDeref>>;
38985
+ type Unique<TList extends readonly unknown[], TDeref extends string | number | never = never> = IfNever<TDeref, UnionToTuple$1<TupleToUnion<TList>>, Process$1<TList, TDeref>>;
38986
38986
 
38987
38987
  /**
38988
38988
  * **UniqueKeys**`<L,R>`
@@ -39131,4 +39131,15 @@ type LastOfEach<T extends readonly unknown[][]> = {
39131
39131
  */
39132
39132
  type SecondOfEach<T extends unknown[][]> = T[number][1] extends T[number][number] ? T[number][1] : never;
39133
39133
 
39134
- 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 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 };
39134
+ type Process<T extends readonly unknown[], R extends readonly unknown[] = []> = [] extends T ? R[number] : Process<AfterFirst<T>, [
39135
+ ...R,
39136
+ First<T> extends string ? Capitalize<First<T>> : First<T>
39137
+ ]>;
39138
+ /**
39139
+ * **CapitalizeEachUnionMember**`<T>`
39140
+ *
39141
+ * Capitalizes all string-derived union members in a union.
39142
+ */
39143
+ type CapitalizeEachUnionMember<T> = IsUnion<T> extends true ? Process<UnionToTuple$1<T>> : T extends string ? Capitalize<T> : T;
39144
+
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 };