inferred-types 0.54.6 → 0.54.8

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.
@@ -4106,6 +4106,27 @@ interface Api$1<TSurface extends Dictionary$1 | TypedFunction$1 = Dictionary$1 |
4106
4106
  */
4107
4107
  type AsApi$1<TSurface extends Dictionary$1 | TypedFunction$1> = HasEscapeFunction$1<TSurface> extends true ? Api$1<TSurface> : Throw$1<"no-escape-function">;
4108
4108
 
4109
+ type Convert$4$1<TKeys extends readonly (ObjectKey$1 & keyof TObj)[], TObj extends AnyObject$1, TResult extends AnyObject$1> = [] extends TKeys ? ExpandDictionary$1<TResult> : Convert$4$1<AfterFirst$1<TKeys>, TObj, TResult & Record<First$1<TKeys>, <T extends TObj[First$1<TKeys>]>() => T>>;
4110
+ /**
4111
+ * **ObjectToApi**`<TObj>`
4112
+ *
4113
+ * Converts any object `TObj` to an object with:
4114
+ *
4115
+ * - the _same_ keys plus a done() function
4116
+ * - all the values of `T` -- which are not functions already --
4117
+ * will be made into a function returning the value.
4118
+ * - the `TDef` property is the value _type_ to return;
4119
+ * use utilities like `shape()`, `union()` etc. to define
4120
+ */
4121
+ type ObjectToApi$1<TObj extends AnyObject$1, TDef = never> = Keys$1<TObj> extends readonly (ObjectKey$1 & keyof TObj)[] ? Convert$4$1<Keys$1<TObj>, TObj, {
4122
+ __kind: "ObjectApi";
4123
+ done: () => TDef;
4124
+ }> : never;
4125
+ /**
4126
+ * A callback signature for an object converted via `ObjectToApi`
4127
+ */
4128
+ type ObjectApiCallback$1<TObj extends AnyObject$1, TDef = never> = ((api: ObjectToApi$1<TObj, TDef>) => unknown);
4129
+
4109
4130
  /**
4110
4131
  * **ObjectKey**
4111
4132
  *
@@ -4655,6 +4676,27 @@ type Nothing$1 = null | undefined;
4655
4676
  */
4656
4677
  type NotNull$1 = Something$1 | undefined;
4657
4678
 
4679
+ type ReqKeys$1<K extends readonly (ObjectKey$1 & keyof O)[], I extends AnyObject$1, O extends AnyObject$1, R extends AnyObject$1 = EmptyObject$1> = [] extends K ? Required<R> : ReqKeys$1<AfterFirst$1<K>, I, O, R & Record<First$1<K>, O[First$1<K>] | (<R extends O[First$1<K>]>(v: I) => R)>>;
4680
+ type OptKeys$1<K extends readonly (ObjectKey$1 & keyof O)[], I extends AnyObject$1, O extends AnyObject$1, R extends AnyObject$1 = EmptyObject$1> = [] extends K ? Partial<R> : ReqKeys$1<AfterFirst$1<K>, I, O, R & Record<First$1<K>, O[First$1<K>] | (<R extends O[First$1<K>]>(v: I) => R)>>;
4681
+ /**
4682
+ * **ObjectMap**`<I,O>`
4683
+ *
4684
+ * A dictionary who's keys map to the keys of `O` and values extend
4685
+ * either:
4686
+ *
4687
+ * 1. `O[key]`
4688
+ * 2. `<TInput extends I>(input: I) => O[key]`
4689
+ *
4690
+ * This dictionary structure describes a converion from type `I` to
4691
+ * type `O` though the eyes of the structure of `O`.
4692
+ *
4693
+ * **Related**: `ObjectMapConversion`
4694
+ */
4695
+ type ObjectMap$1<I extends AnyObject$1, O extends AnyObject$1> = (i: I) => ExpandDictionary$1<ReqKeys$1<RequiredKeys$1<O>, I, O> & OptKeys$1<RequiredKeys$1<O>, I, O>>;
4696
+ type ObjectMapConversion$1<I extends AnyObject$1, O extends AnyObject$1, M extends ObjectMap$1<I, O>> = <TInput extends I>(input: TInput) => {
4697
+ [K in keyof M]: K extends keyof O ? M[K] extends TypedFunction$1 ? ReturnType<M[K]> : M[K] : never;
4698
+ };
4699
+
4658
4700
  /**
4659
4701
  * **Scalar**
4660
4702
  *
@@ -5425,6 +5467,15 @@ type _Validate$1<T extends object> = "value" extends keyof T ? true : false;
5425
5467
  */
5426
5468
  type IsVueRef$1<T> = T extends object ? If$1<IsEqual$1<_Len$1<T>, 0>, false, Retain$1<_Keys$6$1<T>, string>["length"] extends 1 ? _Validate$1<T> : false> : false;
5427
5469
 
5470
+ /**
5471
+ * **IsWideString**`<T>`
5472
+ *
5473
+ * Boolean operator which returns `true` when a _wide_ string
5474
+ * is passed in as `T`. It reports `false` on all other values
5475
+ * including _literal strings_.
5476
+ */
5477
+ type IsWideString$1<T> = IsEqual$1<T, string>;
5478
+
5428
5479
  /**
5429
5480
  * **IsWideScalar**`<T>`
5430
5481
  *
@@ -5683,6 +5734,16 @@ type IfLength$1<TEvaluate extends Tuple$1 | string, TLength extends number, IF,
5683
5734
  */
5684
5735
  type IfNever$1<T, IF, ELSE = T> = [IsNever$1<T>] extends [true] ? IF : ELSE;
5685
5736
 
5737
+ /**
5738
+ * **IfUnset**`<TTest,TElse,[TIf]>`
5739
+ *
5740
+ * Branching utility which will proxy _any_ type through except
5741
+ * for those set with `Unset<[T]>`.
5742
+ *
5743
+ * When `Unset` is found then it will be replaced with `TElse`.
5744
+ */
5745
+ type IfUnset$1<TTest, TElse, TIf = TTest> = TTest extends Unset$1 ? TElse : Exclude<TIf, Unset$1>;
5746
+
5686
5747
  /**
5687
5748
  * An array of all the lower-cased alphabetic characters
5688
5749
  */
@@ -5708,6 +5769,7 @@ interface Constant$1<TKind extends string, TVal = unknown> {
5708
5769
  kind: TKind;
5709
5770
  value: TVal;
5710
5771
  }
5772
+
5711
5773
  /**
5712
5774
  * The 9 provinces to the US which are granted State codes.
5713
5775
  */
@@ -8323,6 +8385,7 @@ declare const NORWEGIAN_NEWS$1: readonly [{
8323
8385
  */
8324
8386
  declare const NUMERIC_CHAR$1: readonly ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9"];
8325
8387
  declare const NON_ZERO_NUMERIC_CHAR$1: readonly ["1", "2", "3", "4", "5", "6", "7", "8", "9"];
8388
+
8326
8389
  /**
8327
8390
  * **PLURAL_EXCEPTIONS**
8328
8391
  *
@@ -8451,7 +8514,7 @@ declare const SIMPLE_OPT_SCALAR_TOKENS$1: readonly ["Opt<string>", "Opt<number>"
8451
8514
  declare const SIMPLE_UNION_TOKENS$1: readonly [`union(${string})` | `union(${string},${string})`];
8452
8515
  declare const SIMPLE_MAP_KEYS$1: readonly ["string", "number", "Dict", "Dict<string, string>", "Dict<string, number>", "Dict<string, boolean>", "Dict<string, unknown>", "Dict<string, Opt<string>>", "Dict<string, Opt<number>>", "Dict<string, Opt<boolean>>"];
8453
8516
  declare const SIMPLE_MAP_VALUES$1: readonly ["string", "number", "Dict", "Dict<string, string>", "Dict<string, number>", "Dict<string, boolean>", "Dict<string, unknown>", "Dict<string, Opt<string>>", "Dict<string, Opt<number>>", "Dict<string, Opt<boolean>>", "boolean", "unknown", "undefined", "Dict", "Array", "Dict<string, Opt<string>>", "Dict<string, Opt<number>>", "Dict<string, Opt<boolean>>", "Dict<string, Opt<unknown>>"];
8454
- declare const SIMPLE_DICT_TOKENS$1: readonly ["Dict", "Dict<string, string>", "Dict<string, number>", "Dict<string, boolean>", "Dict<string, unknown>", "Dict<string, Opt<string>>", "Dict<string, Opt<number>>", "Dict<string, Opt<boolean>>", "Dict<string, Opt<unknown>>", `Dict<{${string}: string}>` | `Dict<{${string}: number}>` | `Dict<{${string}: boolean}>` | `Dict<{${string}: undefined}>` | `Dict<{${string}: never}>` | `Dict<{${string}: unknown}>` | `Dict<{${string}: null}>` | `Dict<{${string}: Opt<string>}>` | `Dict<{${string}: Opt<number>}>` | `Dict<{${string}: Opt<boolean>}>` | `Dict<{${string}: Opt<unknown>}>` | `Dict<{${string}: string(${string})}>` | `Dict<{${string}: number(${number})}>` | `Dict<{${string}: number(${number},${string})}>` | `Dict<{${string}: true}>` | `Dict<{${string}: false}>` | `Dict<{${string}: any}>` | `Dict<{${string}: Opt<true>}>` | `Dict<{${string}: Opt<false>}>` | `Dict<{${string}: Opt<null>}>` | `Dict<{${string}: Opt<undefined>}>` | `Dict<{${string}: Opt<any>}>` | `Dict<{${string}: Opt<string(${string})>}>` | `Dict<{${string}: Opt<string(${string},${string})>}>` | `Dict<{${string}: Opt<number(${number})}>` | `Dict<{${string}: Opt<number(${number},${string})}>`, `Dict<{${string}: string, ${string}: ${string}}` | `Dict<{${string}: number, ${string}: ${string}}` | `Dict<{${string}: boolean, ${string}: ${string}}` | `Dict<{${string}: undefined, ${string}: ${string}}` | `Dict<{${string}: never, ${string}: ${string}}` | `Dict<{${string}: unknown, ${string}: ${string}}` | `Dict<{${string}: null, ${string}: ${string}}` | `Dict<{${string}: Opt<string>, ${string}: ${string}}` | `Dict<{${string}: Opt<number>, ${string}: ${string}}` | `Dict<{${string}: Opt<boolean>, ${string}: ${string}}` | `Dict<{${string}: Opt<unknown>, ${string}: ${string}}` | `Dict<{${string}: string(${string}), ${string}: ${string}}` | `Dict<{${string}: number(${number}), ${string}: ${string}}` | `Dict<{${string}: number(${number},${string}), ${string}: ${string}}` | `Dict<{${string}: true, ${string}: ${string}}` | `Dict<{${string}: false, ${string}: ${string}}` | `Dict<{${string}: any, ${string}: ${string}}` | `Dict<{${string}: Opt<true>, ${string}: ${string}}` | `Dict<{${string}: Opt<false>, ${string}: ${string}}` | `Dict<{${string}: Opt<null>, ${string}: ${string}}` | `Dict<{${string}: Opt<undefined>, ${string}: ${string}}` | `Dict<{${string}: Opt<any>, ${string}: ${string}}` | `Dict<{${string}: Opt<string(${string})>, ${string}: ${string}}` | `Dict<{${string}: Opt<string(${string},${string})>, ${string}: ${string}}` | `Dict<{${string}: Opt<number(${number}), ${string}: ${string}}` | `Dict<{${string}: Opt<number(${number},${string}), ${string}: ${string}}`];
8517
+ declare const SIMPLE_DICT_TOKENS$1: readonly ["Dict", "Dict<string, string>", "Dict<string, number>", "Dict<string, boolean>", "Dict<string, unknown>", "Dict<string, Opt<string>>", "Dict<string, Opt<number>>", "Dict<string, Opt<boolean>>", "Dict<string, Opt<unknown>>", `Dict<{${string}: string}>` | `Dict<{${string}: number}>` | `Dict<{${string}: boolean}>` | `Dict<{${string}: undefined}>` | `Dict<{${string}: false}>` | `Dict<{${string}: true}>` | `Dict<{${string}: any}>` | `Dict<{${string}: never}>` | `Dict<{${string}: unknown}>` | `Dict<{${string}: null}>` | `Dict<{${string}: Opt<string>}>` | `Dict<{${string}: Opt<number>}>` | `Dict<{${string}: Opt<boolean>}>` | `Dict<{${string}: Opt<unknown>}>` | `Dict<{${string}: string(${string})}>` | `Dict<{${string}: number(${number})}>` | `Dict<{${string}: number(${number},${string})}>` | `Dict<{${string}: Opt<true>}>` | `Dict<{${string}: Opt<false>}>` | `Dict<{${string}: Opt<null>}>` | `Dict<{${string}: Opt<undefined>}>` | `Dict<{${string}: Opt<any>}>` | `Dict<{${string}: Opt<string(${string})>}>` | `Dict<{${string}: Opt<string(${string},${string})>}>` | `Dict<{${string}: Opt<number(${number})}>` | `Dict<{${string}: Opt<number(${number},${string})}>`, `Dict<{${string}: string, ${string}: ${string}}` | `Dict<{${string}: number, ${string}: ${string}}` | `Dict<{${string}: boolean, ${string}: ${string}}` | `Dict<{${string}: undefined, ${string}: ${string}}` | `Dict<{${string}: false, ${string}: ${string}}` | `Dict<{${string}: true, ${string}: ${string}}` | `Dict<{${string}: any, ${string}: ${string}}` | `Dict<{${string}: never, ${string}: ${string}}` | `Dict<{${string}: unknown, ${string}: ${string}}` | `Dict<{${string}: null, ${string}: ${string}}` | `Dict<{${string}: Opt<string>, ${string}: ${string}}` | `Dict<{${string}: Opt<number>, ${string}: ${string}}` | `Dict<{${string}: Opt<boolean>, ${string}: ${string}}` | `Dict<{${string}: Opt<unknown>, ${string}: ${string}}` | `Dict<{${string}: string(${string}), ${string}: ${string}}` | `Dict<{${string}: number(${number}), ${string}: ${string}}` | `Dict<{${string}: number(${number},${string}), ${string}: ${string}}` | `Dict<{${string}: Opt<true>, ${string}: ${string}}` | `Dict<{${string}: Opt<false>, ${string}: ${string}}` | `Dict<{${string}: Opt<null>, ${string}: ${string}}` | `Dict<{${string}: Opt<undefined>, ${string}: ${string}}` | `Dict<{${string}: Opt<any>, ${string}: ${string}}` | `Dict<{${string}: Opt<string(${string})>, ${string}: ${string}}` | `Dict<{${string}: Opt<string(${string},${string})>, ${string}: ${string}}` | `Dict<{${string}: Opt<number(${number}), ${string}: ${string}}` | `Dict<{${string}: Opt<number(${number},${string}), ${string}: ${string}}`];
8455
8518
  declare const SIMPLE_ARRAY_TOKENS$1: readonly ["Array", "Array<string>", `Array<string(${string})>`, "Array<number>", `Array<number(${number})>` | `Array<number(${number},${string})>`, "Array<boolean>", "Array<unknown>", "Array<Dict>", "Array<Set>", "Array<Map>"];
8456
8519
  declare const SIMPLE_MAP_TOKENS$1: readonly ["Map", "Map<string, string>" | "Map<string, number>" | "Map<string, boolean>" | "Map<string, undefined>" | "Map<string, unknown>" | "Map<string, Dict>" | "Map<string, Dict<string, string>>" | "Map<string, Dict<string, number>>" | "Map<string, Dict<string, boolean>>" | "Map<string, Dict<string, unknown>>" | "Map<string, Dict<string, Opt<string>>>" | "Map<string, Dict<string, Opt<number>>>" | "Map<string, Dict<string, Opt<boolean>>>" | "Map<string, Array>" | "Map<string, Dict<string, Opt<unknown>>>" | "Map<number, string>" | "Map<number, number>" | "Map<number, boolean>" | "Map<number, undefined>" | "Map<number, unknown>" | "Map<number, Dict>" | "Map<number, Dict<string, string>>" | "Map<number, Dict<string, number>>" | "Map<number, Dict<string, boolean>>" | "Map<number, Dict<string, unknown>>" | "Map<number, Dict<string, Opt<string>>>" | "Map<number, Dict<string, Opt<number>>>" | "Map<number, Dict<string, Opt<boolean>>>" | "Map<number, Array>" | "Map<number, Dict<string, Opt<unknown>>>" | "Map<Dict, string>" | "Map<Dict, number>" | "Map<Dict, boolean>" | "Map<Dict, undefined>" | "Map<Dict, unknown>" | "Map<Dict, Dict>" | "Map<Dict, Dict<string, string>>" | "Map<Dict, Dict<string, number>>" | "Map<Dict, Dict<string, boolean>>" | "Map<Dict, Dict<string, unknown>>" | "Map<Dict, Dict<string, Opt<string>>>" | "Map<Dict, Dict<string, Opt<number>>>" | "Map<Dict, Dict<string, Opt<boolean>>>" | "Map<Dict, Array>" | "Map<Dict, Dict<string, Opt<unknown>>>" | "Map<Dict<string, string>, string>" | "Map<Dict<string, string>, number>" | "Map<Dict<string, string>, boolean>" | "Map<Dict<string, string>, undefined>" | "Map<Dict<string, string>, unknown>" | "Map<Dict<string, string>, Dict>" | "Map<Dict<string, string>, Dict<string, string>>" | "Map<Dict<string, string>, Dict<string, number>>" | "Map<Dict<string, string>, Dict<string, boolean>>" | "Map<Dict<string, string>, Dict<string, unknown>>" | "Map<Dict<string, string>, Dict<string, Opt<string>>>" | "Map<Dict<string, string>, Dict<string, Opt<number>>>" | "Map<Dict<string, string>, Dict<string, Opt<boolean>>>" | "Map<Dict<string, string>, Array>" | "Map<Dict<string, string>, Dict<string, Opt<unknown>>>" | "Map<Dict<string, number>, string>" | "Map<Dict<string, number>, number>" | "Map<Dict<string, number>, boolean>" | "Map<Dict<string, number>, undefined>" | "Map<Dict<string, number>, unknown>" | "Map<Dict<string, number>, Dict>" | "Map<Dict<string, number>, Dict<string, string>>" | "Map<Dict<string, number>, Dict<string, number>>" | "Map<Dict<string, number>, Dict<string, boolean>>" | "Map<Dict<string, number>, Dict<string, unknown>>" | "Map<Dict<string, number>, Dict<string, Opt<string>>>" | "Map<Dict<string, number>, Dict<string, Opt<number>>>" | "Map<Dict<string, number>, Dict<string, Opt<boolean>>>" | "Map<Dict<string, number>, Array>" | "Map<Dict<string, number>, Dict<string, Opt<unknown>>>" | "Map<Dict<string, boolean>, string>" | "Map<Dict<string, boolean>, number>" | "Map<Dict<string, boolean>, boolean>" | "Map<Dict<string, boolean>, undefined>" | "Map<Dict<string, boolean>, unknown>" | "Map<Dict<string, boolean>, Dict>" | "Map<Dict<string, boolean>, Dict<string, string>>" | "Map<Dict<string, boolean>, Dict<string, number>>" | "Map<Dict<string, boolean>, Dict<string, boolean>>" | "Map<Dict<string, boolean>, Dict<string, unknown>>" | "Map<Dict<string, boolean>, Dict<string, Opt<string>>>" | "Map<Dict<string, boolean>, Dict<string, Opt<number>>>" | "Map<Dict<string, boolean>, Dict<string, Opt<boolean>>>" | "Map<Dict<string, boolean>, Array>" | "Map<Dict<string, boolean>, Dict<string, Opt<unknown>>>" | "Map<Dict<string, unknown>, string>" | "Map<Dict<string, unknown>, number>" | "Map<Dict<string, unknown>, boolean>" | "Map<Dict<string, unknown>, undefined>" | "Map<Dict<string, unknown>, unknown>" | "Map<Dict<string, unknown>, Dict>" | "Map<Dict<string, unknown>, Dict<string, string>>" | "Map<Dict<string, unknown>, Dict<string, number>>" | "Map<Dict<string, unknown>, Dict<string, boolean>>" | "Map<Dict<string, unknown>, Dict<string, unknown>>" | "Map<Dict<string, unknown>, Dict<string, Opt<string>>>" | "Map<Dict<string, unknown>, Dict<string, Opt<number>>>" | "Map<Dict<string, unknown>, Dict<string, Opt<boolean>>>" | "Map<Dict<string, unknown>, Array>" | "Map<Dict<string, unknown>, Dict<string, Opt<unknown>>>" | "Map<Dict<string, Opt<string>>, string>" | "Map<Dict<string, Opt<string>>, number>" | "Map<Dict<string, Opt<string>>, boolean>" | "Map<Dict<string, Opt<string>>, undefined>" | "Map<Dict<string, Opt<string>>, unknown>" | "Map<Dict<string, Opt<string>>, Dict>" | "Map<Dict<string, Opt<string>>, Dict<string, string>>" | "Map<Dict<string, Opt<string>>, Dict<string, number>>" | "Map<Dict<string, Opt<string>>, Dict<string, boolean>>" | "Map<Dict<string, Opt<string>>, Dict<string, unknown>>" | "Map<Dict<string, Opt<string>>, Dict<string, Opt<string>>>" | "Map<Dict<string, Opt<string>>, Dict<string, Opt<number>>>" | "Map<Dict<string, Opt<string>>, Dict<string, Opt<boolean>>>" | "Map<Dict<string, Opt<string>>, Array>" | "Map<Dict<string, Opt<string>>, Dict<string, Opt<unknown>>>" | "Map<Dict<string, Opt<number>>, string>" | "Map<Dict<string, Opt<number>>, number>" | "Map<Dict<string, Opt<number>>, boolean>" | "Map<Dict<string, Opt<number>>, undefined>" | "Map<Dict<string, Opt<number>>, unknown>" | "Map<Dict<string, Opt<number>>, Dict>" | "Map<Dict<string, Opt<number>>, Dict<string, string>>" | "Map<Dict<string, Opt<number>>, Dict<string, number>>" | "Map<Dict<string, Opt<number>>, Dict<string, boolean>>" | "Map<Dict<string, Opt<number>>, Dict<string, unknown>>" | "Map<Dict<string, Opt<number>>, Dict<string, Opt<string>>>" | "Map<Dict<string, Opt<number>>, Dict<string, Opt<number>>>" | "Map<Dict<string, Opt<number>>, Dict<string, Opt<boolean>>>" | "Map<Dict<string, Opt<number>>, Array>" | "Map<Dict<string, Opt<number>>, Dict<string, Opt<unknown>>>" | "Map<Dict<string, Opt<boolean>>, string>" | "Map<Dict<string, Opt<boolean>>, number>" | "Map<Dict<string, Opt<boolean>>, boolean>" | "Map<Dict<string, Opt<boolean>>, undefined>" | "Map<Dict<string, Opt<boolean>>, unknown>" | "Map<Dict<string, Opt<boolean>>, Dict>" | "Map<Dict<string, Opt<boolean>>, Dict<string, string>>" | "Map<Dict<string, Opt<boolean>>, Dict<string, number>>" | "Map<Dict<string, Opt<boolean>>, Dict<string, boolean>>" | "Map<Dict<string, Opt<boolean>>, Dict<string, unknown>>" | "Map<Dict<string, Opt<boolean>>, Dict<string, Opt<string>>>" | "Map<Dict<string, Opt<boolean>>, Dict<string, Opt<number>>>" | "Map<Dict<string, Opt<boolean>>, Dict<string, Opt<boolean>>>" | "Map<Dict<string, Opt<boolean>>, Array>" | "Map<Dict<string, Opt<boolean>>, Dict<string, Opt<unknown>>>", "WeakMap"];
8457
8520
  declare const SIMPLE_SET_TOKENS$1: readonly ["Set", "Set<string>" | "Set<number>" | "Set<boolean>" | "Set<unknown>" | "Set<Opt<string>>" | "Set<Opt<number>>" | "Set<Opt<boolean>>" | "Set<Opt<unknown>>"];
@@ -9050,6 +9113,10 @@ type AsNumberWhenPossible$1<T> = If$1<IsUnion$1<T>, ConvertUnion$1$1<T>, T exten
9050
9113
  */
9051
9114
  type AsBoolean$1<T> = T extends boolean ? T : T extends "true" ? true : T extends "false" ? false : T extends "boolean" ? boolean : never;
9052
9115
 
9116
+ type ErrMsg$1<TType extends string, TContext extends AnyObject$1 | string = "no desc"> = TContext extends string ? TType & {
9117
+ desc: TContext;
9118
+ } : TType & TContext;
9119
+
9053
9120
  interface TypeErrorInfo$1<TContext extends Record<string, unknown> = EmptyObject$1> {
9054
9121
  /**
9055
9122
  * if there is a particular "id" value which is useful to separate from the error message
@@ -13236,7 +13303,7 @@ type FnWithProps$1<TFn extends TypedFunction$1, TProps extends AnyObject$1, TClo
13236
13303
  */
13237
13304
  type HandleDoneFn$1<T> = T extends {
13238
13305
  done: TypedFunction$1;
13239
- } ? ReturnType<T["done"]> : T;
13306
+ } ? ReturnType<T["done"]> : T extends TypedFunction$1 ? Parameters<T>["length"] extends 0 ? ReturnType<T> : T : T;
13240
13307
 
13241
13308
  /**
13242
13309
  * **LiteralFn**`<TFn>`
@@ -14038,12 +14105,11 @@ type FromSimpleToken$1<T extends SimpleToken$1> = SimpleType$1<T>;
14038
14105
  type _FromDefineObject$1<T extends Required<DefineObject$1>> = {
14039
14106
  [K in keyof T]: T[K] extends SimpleToken$1 ? FromSimpleToken$1<T[K]> : T[K] extends ShapeCallback$1 ? FromShapeCallback$1<T[K]> : never;
14040
14107
  };
14041
- type TypeFromDefineObject$1<T> = T;
14042
14108
  /**
14043
14109
  * Converts a `DefineObject` definition into the type that it is
14044
14110
  * defining.
14045
14111
  */
14046
- type FromDefineObject$1<T extends DefineObject$1> = TypeFromDefineObject$1<MakeKeysOptional$1<_FromDefineObject$1<Required<T>>, UnionToTuple$1$1<OptionalKeys$1<T>> extends readonly ObjectKey$1[] ? UnionToTuple$1$1<OptionalKeys$1<T>> : never>>;
14112
+ type FromDefineObject$1<T extends DefineObject$1> = MakeKeysOptional$1<_FromDefineObject$1<Required<T>>, UnionToTuple$1$1<OptionalKeys$1<T>> extends readonly ObjectKey$1[] ? UnionToTuple$1$1<OptionalKeys$1<T>> : never>;
14047
14113
  /**
14048
14114
  * **FromDefn**`<T, [TElse]>`
14049
14115
  *
@@ -14356,37 +14422,6 @@ type Process$f$1<TContainer extends AnyObject$1> = [IsObjectLiteral$1<RemoveInde
14356
14422
  */
14357
14423
  type Keys$1<TContainer extends Tuple$1 | AnyObject$1> = TContainer extends Tuple$1 ? ProcessTuple$6<TContainer> : TContainer extends AnyObject$1 ? Process$f$1<TContainer> : never;
14358
14424
 
14359
- type MakeIntoUnion$1<K extends PropertyKey | readonly PropertyKey[]> = K extends readonly PropertyKey[] ? TupleToUnion$1<K> : K;
14360
- type MakeNumericIndex$1<T> = T;
14361
- /**
14362
- * **WithKeys**`<T,K>`
14363
- *
14364
- * This type utility will ensure that the type `T` will _retain_ the key/value
14365
- * pairs which extend `K`.
14366
- *
14367
- * It is very similar to **Pick** but rather `K` being restricted to
14368
- * being a string union, wth **WithKeys** you can use the union type
14369
- * or a readonly array of strings.
14370
- *
14371
- * ```ts
14372
- * type Test = { foo: 1, bar: number, baz: string };
14373
- * // { foo: 1, bar: number }
14374
- * type T1 = WithKeys<Test, "foo" | "bar">; // Pick syntax
14375
- * type T2 = WithKeys<Test, ["foo", "bar"]>;
14376
- * ```
14377
- */
14378
- 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>>;
14379
-
14380
- type Process$e$1<TObj extends Dictionary$1, TKeys extends ObjectKey$1> = [] extends TKeys ? TObj : Omit<TObj, TKeys>;
14381
- /**
14382
- * **WithoutKeys**`<TObj, TKeys>`
14383
- *
14384
- * Removes the keys in `TKeys` from an object `TObj`. This is
14385
- * functionally equivalent to the `Omit<T,U>` built-in but rather than
14386
- * taking a union type it takes an array of keys.
14387
- */
14388
- type WithoutKeys$1<TObj extends Dictionary$1, TKeys extends ObjectKey$1 | readonly ObjectKey$1[]> = TKeys extends readonly ObjectKey$1[] ? Process$e$1<TObj, TupleToUnion$1<TKeys>> : ExpandDictionary$1<Process$e$1<TObj, TKeys extends readonly ObjectKey$1[] ? TupleToUnion$1<TKeys> : TKeys>>;
14389
-
14390
14425
  type ProcessTupleKeys$1<TObj extends AnyObject$1, TKeys extends readonly ObjectKey$1[]> = ExpandDictionary$1<WithoutKeys$1<TObj, TKeys> & {
14391
14426
  [K in keyof WithKeys$1<TObj, TKeys>]?: K extends keyof TObj ? TObj[K] : never;
14392
14427
  }>;
@@ -14445,7 +14480,25 @@ type CombinedKeys$1<A extends Dictionary$1, B extends Dictionary$1> = Unique$1<[
14445
14480
  ...(IsObjectLiteral$1<B> extends true ? Keys$1<B> : [])
14446
14481
  ]>;
14447
14482
 
14448
- type Process$c$1<TKeys extends readonly string[], TValue, TObj extends Dictionary$1 = EmptyObject$1> = [] extends TKeys ? TObj : Process$c$1<AfterFirst$1<TKeys>, TValue, TObj & Record<First$1<TKeys>, TValue>>;
14483
+ /**
14484
+ * Helper type to infer narrow types while constraining to a broad type.
14485
+ */
14486
+ type ConstrainObject$1<TObj extends AnyObject$1, TConstraint extends AnyObject$1> = {
14487
+ [K in keyof TConstraint]: K extends keyof TObj ? TObj[K] & TConstraint[K] : never;
14488
+ };
14489
+ type ConstrainedObjectCallback$1<TConstraint extends AnyObject$1> = <TReturn extends Narrowable$1>(cb: (input: ConstrainObject$1<TConstraint, TConstraint>) => TReturn) => (input: ConstrainObject$1<TConstraint, TConstraint>) => TReturn;
14490
+ /**
14491
+ * A function which will accept any object that meets the
14492
+ * defined constraint and will extract a narrow type from it.
14493
+ *
14494
+ * **Related:** `narrowObjectTo`
14495
+ */
14496
+ interface ConstrainedObjectIdentity$1<TConstraint extends AnyObject$1> {
14497
+ <T extends TConstraint>(input: T & ConstrainObject$1<T, TConstraint>): T;
14498
+ asCallback: ConstrainedObjectCallback$1<TConstraint>;
14499
+ }
14500
+
14501
+ type Process$d$1<TKeys extends readonly string[], TValue, TObj extends Dictionary$1 = EmptyObject$1> = [] extends TKeys ? TObj : Process$d$1<AfterFirst$1<TKeys>, TValue, TObj & Record<First$1<TKeys>, TValue>>;
14449
14502
  /**
14450
14503
  * **CreateKV**`<TKeys,[TValue]>`
14451
14504
  *
@@ -14453,7 +14506,7 @@ type Process$c$1<TKeys extends readonly string[], TValue, TObj extends Dictionar
14453
14506
  * as `TKeys` and with all properties set to the value
14454
14507
  * of `TValue` (which defaults to `unknown`)
14455
14508
  */
14456
- type CreateKV$1<TKeys extends readonly string[], TValue = unknown> = ExpandRecursively$1<Process$c$1<TKeys, TValue>>;
14509
+ type CreateKV$1<TKeys extends readonly string[], TValue = unknown> = ExpandRecursively$1<Process$d$1<TKeys, TValue>>;
14457
14510
 
14458
14511
  /**
14459
14512
  * the _optional_ variants of the `SimpleScalarToken` type
@@ -14999,6 +15052,24 @@ type KeysWithoutValue$1<TObj extends AnyObject$1, TValue extends Narrowable$1> =
14999
15052
  [K in keyof TObj]: TObj[K] extends TValue ? never : Readonly<K>;
15000
15053
  }[keyof TObj];
15001
15054
 
15055
+ /**
15056
+ * **RequiredKeys**`<T,[V]>`
15057
+ *
15058
+ * Provides a union type of the _keys_ in `T` which are
15059
+ * **required** properties.
15060
+ *
15061
+ * **Note:** you also may optionally filter further by specifying a value
15062
+ * by the _value_ of the key and then only keys which are required AND
15063
+ * who extend `V` will be included in the union.
15064
+ *
15065
+ * **Related:** `OptionalKeys`, `RequiredProps`, `RequiredKeysTuple`
15066
+ */
15067
+ type RequiredKeys$1<T extends Dictionary$1, V = Unset$1> = As$1<{
15068
+ [K in keyof T]-?: EmptyObject$1 extends {
15069
+ [P in K]: T[K];
15070
+ } ? never : IfUnset$1<V, K, T[K] extends V ? K : never>;
15071
+ }[keyof T], ObjectKey$1>;
15072
+
15002
15073
  /**
15003
15074
  * **SharedKeys**`<A,B>`
15004
15075
  *
@@ -15024,7 +15095,7 @@ type SharedKeys$1<A extends Record<ObjectKey$1, unknown> | object, B extends Rec
15024
15095
  */
15025
15096
  type TakeProp$1<TTest, TProp extends PropertyKey, TElse = undefined> = TProp extends keyof TTest ? TTest[TProp] : TElse;
15026
15097
 
15027
- type Process$2$1<TKeys extends readonly ObjectKey$1[], TObj extends Record<ObjectKey$1, unknown>, TResult extends readonly unknown[] = []> = [] extends TKeys ? TResult : Process$2$1<AfterFirst$1<TKeys>, TObj, [
15098
+ type Process$3$1<TKeys extends readonly ObjectKey$1[], TObj extends Record<ObjectKey$1, unknown>, TResult extends readonly unknown[] = []> = [] extends TKeys ? TResult : Process$3$1<AfterFirst$1<TKeys>, TObj, [
15028
15099
  ...TResult,
15029
15100
  First$1<TKeys> extends keyof TObj ? TObj[First$1<TKeys>] : never
15030
15101
  ]>;
@@ -15036,7 +15107,38 @@ type Process$2$1<TKeys extends readonly ObjectKey$1[], TObj extends Record<Objec
15036
15107
  * - for **tuples** this is just a _proxy_ of the type
15037
15108
  * - for _wide_ types like `string[]`
15038
15109
  */
15039
- type Values$1<T extends Container$1> = T extends Tuple$1 ? T : T extends Dictionary$1 ? Process$2$1<Keys$1<T> extends readonly ObjectKey$1[] ? Keys$1<T> : never, T> : T extends TypedFunction$1 ? [T] : [];
15110
+ type Values$1<T extends Container$1> = T extends Tuple$1 ? T : T extends Dictionary$1 ? Process$3$1<Keys$1<T> extends readonly ObjectKey$1[] ? Keys$1<T> : never, T> : T extends TypedFunction$1 ? [T] : [];
15111
+
15112
+ type MakeIntoUnion$1<K extends PropertyKey | readonly PropertyKey[]> = K extends readonly PropertyKey[] ? TupleToUnion$1<K> : K;
15113
+ type MakeNumericIndex$1<T> = T;
15114
+ /**
15115
+ * **WithKeys**`<T,K>`
15116
+ *
15117
+ * This type utility will ensure that the type `T` will _retain_ the key/value
15118
+ * pairs which extend `K`.
15119
+ *
15120
+ * It is very similar to **Pick** but rather `K` being restricted to
15121
+ * being a string union, wth **WithKeys** you can use the union type
15122
+ * or a readonly array of strings.
15123
+ *
15124
+ * ```ts
15125
+ * type Test = { foo: 1, bar: number, baz: string };
15126
+ * // { foo: 1, bar: number }
15127
+ * type T1 = WithKeys<Test, "foo" | "bar">; // Pick syntax
15128
+ * type T2 = WithKeys<Test, ["foo", "bar"]>;
15129
+ * ```
15130
+ */
15131
+ 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>>;
15132
+
15133
+ type Process$2$1<TObj extends Dictionary$1, TKeys extends ObjectKey$1> = [] extends TKeys ? TObj : Omit<TObj, TKeys>;
15134
+ /**
15135
+ * **WithoutKeys**`<TObj, TKeys>`
15136
+ *
15137
+ * Removes the keys in `TKeys` from an object `TObj`. This is
15138
+ * functionally equivalent to the `Omit<T,U>` built-in but rather than
15139
+ * taking a union type it takes an array of keys.
15140
+ */
15141
+ type WithoutKeys$1<TObj extends Dictionary$1, TKeys extends ObjectKey$1 | readonly ObjectKey$1[]> = TKeys extends readonly ObjectKey$1[] ? Process$2$1<TObj, TupleToUnion$1<TKeys>> : ExpandDictionary$1<Process$2$1<TObj, TKeys extends readonly ObjectKey$1[] ? TupleToUnion$1<TKeys> : TKeys>>;
15040
15142
 
15041
15143
  /**
15042
15144
  * **WithoutValue**
@@ -15262,6 +15364,40 @@ declare function asApi<T extends Dictionary$1 | TypedFunction$1>(api: T): OnPass
15262
15364
  */
15263
15365
  declare function handleDoneFn<TVal, TBareFn extends boolean>(val: TVal, call_bare_fn?: TBareFn): any;
15264
15366
 
15367
+ declare function objectToApi<TObj extends Record<string, N>, N extends Narrowable$1, TDef = never>(obj: TObj, def?: TDef): ObjectToApi$1<TObj, TDef>;
15368
+ type MapperReturns<TInput extends AnyObject$1, TOutput extends AnyObject$1, T extends ObjectApiCallback$1<any, any>> = HandleDoneFn$1<ReturnType<T>> extends TOutput ? HandleDoneFn$1<ReturnType<T>> : ErrMsg$1<"invalid-mapper", {
15369
+ input: TInput;
15370
+ output: TOutput;
15371
+ }>;
15372
+ /**
15373
+ * **defineObjectApi**`(inputDefn) → api`
15374
+ *
15375
+ * **defineObjectApi.withType**`<TInput>() → api`
15376
+ *
15377
+ * a
15378
+ */
15379
+ declare const defineObjectApi: ((_inputDefn: DefineObject$1) => {
15380
+ mapTo: <TToDefn extends DefineObject$1>(_defn: TToDefn) => {
15381
+ mapper: <T extends ObjectApiCallback$1<{
15382
+ [x: string]: never;
15383
+ }>>(map: T) => <I extends Record<string, N>, N extends Narrowable$1>(input: I & {
15384
+ [x: string]: never;
15385
+ }) => MapperReturns<I, MakeKeysOptional$1<{ [K in keyof Required<TToDefn>]: Required<TToDefn>[K] extends SimpleToken$1 ? SimpleType$1<Required<TToDefn>[K]> : Required<TToDefn>[K] extends ShapeCallback$1 ? ReturnType<HandleDoneFn$1<Required<TToDefn>[K]>> : never; }, UnionToTuple$1$1<OptionalKeys$1<TToDefn, Unset$1>, LastInUnion$1$1<OptionalKeys$1<TToDefn, Unset$1>>> extends readonly ObjectKey$1[] ? readonly ObjectKey$1[] & UnionToTuple$1$1<OptionalKeys$1<TToDefn, Unset$1>, LastInUnion$1$1<OptionalKeys$1<TToDefn, Unset$1>>> : never>, T>;
15386
+ };
15387
+ mapToWithType: <TOutput extends AnyObject$1>() => <T extends ObjectApiCallback$1<{
15388
+ [x: string]: never;
15389
+ }>>(map: T) => <I extends Record<string, N>, N extends Narrowable$1>(input: I & {
15390
+ [x: string]: never;
15391
+ }) => MapperReturns<I, TOutput, T>;
15392
+ }) & {
15393
+ withType: <TInput extends AnyObject$1>() => {
15394
+ mapTo: <TToDefn extends DefineObject$1>(_defn: TToDefn) => {
15395
+ mapper: <T extends ObjectApiCallback$1<TInput>>(map: T) => <I extends Record<string, N>, N extends Narrowable$1>(input: I & TInput) => MapperReturns<I, MakeKeysOptional$1<{ [K in keyof Required<TToDefn>]: Required<TToDefn>[K] extends SimpleToken$1 ? SimpleType$1<Required<TToDefn>[K]> : Required<TToDefn>[K] extends ShapeCallback$1 ? ReturnType<HandleDoneFn$1<Required<TToDefn>[K]>> : never; }, UnionToTuple$1$1<OptionalKeys$1<TToDefn, Unset$1>, LastInUnion$1$1<OptionalKeys$1<TToDefn, Unset$1>>> extends readonly ObjectKey$1[] ? readonly ObjectKey$1[] & UnionToTuple$1$1<OptionalKeys$1<TToDefn, Unset$1>, LastInUnion$1$1<OptionalKeys$1<TToDefn, Unset$1>>> : never>, T>;
15396
+ };
15397
+ mapToWithType: <TOutput extends AnyObject$1>() => <T extends ObjectApiCallback$1<TInput>>(map: T) => <I extends Record<string, N>, N extends Narrowable$1>(input: I & TInput) => MapperReturns<I, TOutput, T>;
15398
+ };
15399
+ };
15400
+
15265
15401
  /**
15266
15402
  * **ifArray**(T, IF, ELSE)
15267
15403
  *
@@ -15639,6 +15775,39 @@ declare function get<TValue extends Narrowable$1 | readonly unknown[], TDotPath
15639
15775
  */
15640
15776
  declare function keysOf<TContainer extends Container$1>(container: TContainer): Keys$1<TContainer>;
15641
15777
 
15778
+ /**
15779
+ * **narrowObjectTo**`(constraint) => (obj) => obj
15780
+ *
15781
+ * Ensures that this identity function extracts a narrow type
15782
+ * definition from whatever is passed into `obj` while ensuring
15783
+ * that `obj` conform to the broader type definition `constraint`.
15784
+ *
15785
+ * ```ts
15786
+ * const fn = narrowObjectTo({foo: "string", bar: "Opt<number>"});
15787
+ * // {foo: "foo"; bar: 42}
15788
+ * const obj = fn({foo: "foo", bar: 42});
15789
+ * ```
15790
+ *
15791
+ * **Related:** `ConstrainedObjectIdentity`, `narrowObjectToType`
15792
+ */
15793
+ declare function narrowObjectTo<TDefn extends DefineObject$1>(_defn: TDefn): ConstrainedObjectIdentity$1<FromDefineObject$1<TDefn>>;
15794
+ /**
15795
+ * **narrowObjectToType**`<Constraint>() => (obj) => obj
15796
+ *
15797
+ * Ensures that this identity function extracts a narrow type
15798
+ * definition from whatever is passed into `obj` while ensuring
15799
+ * that `obj` conform to the broader type definition `constraint`.
15800
+ *
15801
+ * ```ts
15802
+ * const fn = narrowObjectToType<{foo: "string", bar: "Opt<number>"}>();
15803
+ * // {foo: "foo"; bar: 42}
15804
+ * const obj = fn({foo: "foo", bar: 42});
15805
+ * ```
15806
+ *
15807
+ * **Related:** `ConstrainedObjectIdentity`, `narrowObjectTo`
15808
+ */
15809
+ declare function narrowObjectToType<TDefn extends AnyObject$1>(): ConstrainedObjectIdentity$1<TDefn>;
15810
+
15642
15811
  /**
15643
15812
  * **omit**(obj, excluding)
15644
15813
  *
@@ -15719,7 +15888,7 @@ declare function withKeys<TObj extends Dictionary$1<string | symbol, N>, N exten
15719
15888
  utility: "retain()";
15720
15889
  stack: ["retain()"];
15721
15890
  __kind: "ErrorCondition";
15722
- keys: [...TKeys] extends AnyFunction$1 ? AnyFunction$1 & [...TKeys] extends TypedFunction$1<any> ? [] extends Parameters<TypedFunction$1<any> & [...TKeys]> | Parameters<TypedFunction$1<any> & Function & [...TKeys]> ? IsNarrowingFn$1<TypedFunction$1<any> & [...TKeys]> | IsNarrowingFn$1<TypedFunction$1<any> & Function & [...TKeys]> extends true ? [IsNonEmptyObject$1<ExpandDictionary$1<keyof [...TKeys] & (keyof [...TKeys] | keyof Function) extends ObjectKey$1 ? Pick<(TypedFunction$1<any> & AnyFunction$1) & [...TKeys], ObjectKey$1 & (keyof [...TKeys] & (keyof [...TKeys] | keyof Function))> : never>>] extends [true] ? (() => ReturnType<TypedFunction$1<any> & [...TKeys]> | ReturnType<TypedFunction$1<any> & Function & [...TKeys]>) & ExpandDictionary$1<keyof [...TKeys] & (keyof [...TKeys] | keyof Function) extends ObjectKey$1 ? Pick<(TypedFunction$1<any> & AnyFunction$1) & [...TKeys], ObjectKey$1 & (keyof [...TKeys] & (keyof [...TKeys] | keyof Function))> : never> : () => ReturnType<TypedFunction$1<any> & [...TKeys]> | ReturnType<TypedFunction$1<any> & Function & [...TKeys]> : IsNonEmptyObject$1<ExpandDictionary$1<keyof [...TKeys] & (keyof [...TKeys] | keyof Function) extends ObjectKey$1 ? Pick<(TypedFunction$1<any> & AnyFunction$1) & [...TKeys], ObjectKey$1 & (keyof [...TKeys] & (keyof [...TKeys] | keyof Function))> : never>> extends true ? (() => ReturnType<TypedFunction$1<any> & [...TKeys]> | ReturnType<TypedFunction$1<any> & Function & [...TKeys]>) & ExpandDictionary$1<keyof [...TKeys] & (keyof [...TKeys] | keyof Function) extends ObjectKey$1 ? Pick<(TypedFunction$1<any> & AnyFunction$1) & [...TKeys], ObjectKey$1 & (keyof [...TKeys] & (keyof [...TKeys] | keyof Function))> : never> : () => ReturnType<TypedFunction$1<any> & [...TKeys]> | ReturnType<TypedFunction$1<any> & Function & [...TKeys]> : [] extends AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>> | AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>> ? IsNarrowingFn$1<TypedFunction$1<any> & [...TKeys]> | IsNarrowingFn$1<TypedFunction$1<any> & Function & [...TKeys]> extends true ? [IsNonEmptyObject$1<ExpandDictionary$1<keyof [...TKeys] & (keyof [...TKeys] | keyof Function) extends ObjectKey$1 ? Pick<(TypedFunction$1<any> & AnyFunction$1) & [...TKeys], ObjectKey$1 & (keyof [...TKeys] & (keyof [...TKeys] | keyof Function))> : never>>] extends [true] ? (<T extends [First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never> | First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never>> : First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never> | First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never>]>(...args: T) => ReturnType<TypedFunction$1<any> & [...TKeys]> | ReturnType<TypedFunction$1<any> & Function & [...TKeys]>) & ExpandDictionary$1<keyof [...TKeys] & (keyof [...TKeys] | keyof Function) extends ObjectKey$1 ? Pick<(TypedFunction$1<any> & AnyFunction$1) & [...TKeys], ObjectKey$1 & (keyof [...TKeys] & (keyof [...TKeys] | keyof Function))> : never> : <T extends [First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never> | First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never>> : First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never> | First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never>]>(...args: T) => ReturnType<TypedFunction$1<any> & [...TKeys]> | ReturnType<TypedFunction$1<any> & Function & [...TKeys]> : IsNonEmptyObject$1<ExpandDictionary$1<keyof [...TKeys] & (keyof [...TKeys] | keyof Function) extends ObjectKey$1 ? Pick<(TypedFunction$1<any> & AnyFunction$1) & [...TKeys], ObjectKey$1 & (keyof [...TKeys] & (keyof [...TKeys] | keyof Function))> : never>> extends true ? ((args_0: First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never> | First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never>> : First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never> | First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never>) => ReturnType<TypedFunction$1<any> & [...TKeys]> | ReturnType<TypedFunction$1<any> & Function & [...TKeys]>) & ExpandDictionary$1<keyof [...TKeys] & (keyof [...TKeys] | keyof Function) extends ObjectKey$1 ? Pick<(TypedFunction$1<any> & AnyFunction$1) & [...TKeys], ObjectKey$1 & (keyof [...TKeys] & (keyof [...TKeys] | keyof Function))> : never> : (args_0: First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never> | First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never>> : First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never> | First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never>) => ReturnType<TypedFunction$1<any> & [...TKeys]> | ReturnType<TypedFunction$1<any> & Function & [...TKeys]> : [] extends AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>> | AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>> ? IsNarrowingFn$1<TypedFunction$1<any> & [...TKeys]> | IsNarrowingFn$1<TypedFunction$1<any> & Function & [...TKeys]> extends true ? [IsNonEmptyObject$1<ExpandDictionary$1<keyof [...TKeys] & (keyof [...TKeys] | keyof Function) extends ObjectKey$1 ? Pick<(TypedFunction$1<any> & AnyFunction$1) & [...TKeys], ObjectKey$1 & (keyof [...TKeys] & (keyof [...TKeys] | keyof Function))> : never>>] extends [true] ? (<T extends [First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never> | First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never>> : First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never> | First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never>, First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never> | First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never>> : First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never> | First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never>]>(...args: T) => ReturnType<TypedFunction$1<any> & [...TKeys]> | ReturnType<TypedFunction$1<any> & Function & [...TKeys]>) & ExpandDictionary$1<keyof [...TKeys] & (keyof [...TKeys] | keyof Function) extends ObjectKey$1 ? Pick<(TypedFunction$1<any> & AnyFunction$1) & [...TKeys], ObjectKey$1 & (keyof [...TKeys] & (keyof [...TKeys] | keyof Function))> : never> : <T extends [First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never> | First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never>> : First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never> | First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never>, First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never> | First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never>> : First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never> | First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never>]>(...args: T) => ReturnType<TypedFunction$1<any> & [...TKeys]> | ReturnType<TypedFunction$1<any> & Function & [...TKeys]> : IsNonEmptyObject$1<ExpandDictionary$1<keyof [...TKeys] & (keyof [...TKeys] | keyof Function) extends ObjectKey$1 ? Pick<(TypedFunction$1<any> & AnyFunction$1) & [...TKeys], ObjectKey$1 & (keyof [...TKeys] & (keyof [...TKeys] | keyof Function))> : never>> extends true ? ((args_0: First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never> | First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never>> : First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never> | First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never>, args_1: First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never> | First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never>> : First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never> | First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never>) => ReturnType<TypedFunction$1<any> & [...TKeys]> | ReturnType<TypedFunction$1<any> & Function & [...TKeys]>) & ExpandDictionary$1<keyof [...TKeys] & (keyof [...TKeys] | keyof Function) extends ObjectKey$1 ? Pick<(TypedFunction$1<any> & AnyFunction$1) & [...TKeys], ObjectKey$1 & (keyof [...TKeys] & (keyof [...TKeys] | keyof Function))> : never> : (args_0: First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never> | First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never>> : First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never> | First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never>, args_1: First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never> | First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never>> : First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never> | First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never>) => ReturnType<TypedFunction$1<any> & [...TKeys]> | ReturnType<TypedFunction$1<any> & Function & [...TKeys]> : [] extends AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>> | AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>> ? IsNarrowingFn$1<TypedFunction$1<any> & [...TKeys]> | IsNarrowingFn$1<TypedFunction$1<any> & Function & [...TKeys]> extends true ? [IsNonEmptyObject$1<ExpandDictionary$1<keyof [...TKeys] & (keyof [...TKeys] | keyof Function) extends ObjectKey$1 ? Pick<(TypedFunction$1<any> & AnyFunction$1) & [...TKeys], ObjectKey$1 & (keyof [...TKeys] & (keyof [...TKeys] | keyof Function))> : never>>] extends [true] ? (<T extends [First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never> | First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never>> : First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never> | First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never>, First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never> | First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never>> : First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never> | First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never>, First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>, never> | First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>, never> | First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>, never>]>(...args: T) => ReturnType<TypedFunction$1<any> & [...TKeys]> | ReturnType<TypedFunction$1<any> & Function & [...TKeys]>) & ExpandDictionary$1<keyof [...TKeys] & (keyof [...TKeys] | keyof Function) extends ObjectKey$1 ? Pick<(TypedFunction$1<any> & AnyFunction$1) & [...TKeys], ObjectKey$1 & (keyof [...TKeys] & (keyof [...TKeys] | keyof Function))> : never> : <T extends [First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never> | First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never>> : First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never> | First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never>, First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never> | First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never>> : First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never> | First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never>, First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>, never> | First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>, never> | First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>, never>]>(...args: T) => ReturnType<TypedFunction$1<any> & [...TKeys]> | ReturnType<TypedFunction$1<any> & Function & [...TKeys]> : IsNonEmptyObject$1<ExpandDictionary$1<keyof [...TKeys] & (keyof [...TKeys] | keyof Function) extends ObjectKey$1 ? Pick<(TypedFunction$1<any> & AnyFunction$1) & [...TKeys], ObjectKey$1 & (keyof [...TKeys] & (keyof [...TKeys] | keyof Function))> : never>> extends true ? ((args_0: First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never> | First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never>> : First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never> | First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never>, args_1: First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never> | First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never>> : First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never> | First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never>, args_2: First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>, never> | First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>, never> | First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>, never>) => ReturnType<TypedFunction$1<any> & [...TKeys]> | ReturnType<TypedFunction$1<any> & Function & [...TKeys]>) & ExpandDictionary$1<keyof [...TKeys] & (keyof [...TKeys] | keyof Function) extends ObjectKey$1 ? Pick<(TypedFunction$1<any> & AnyFunction$1) & [...TKeys], ObjectKey$1 & (keyof [...TKeys] & (keyof [...TKeys] | keyof Function))> : never> : (args_0: First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never> | First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never>> : First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never> | First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never>, args_1: First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never> | First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never>> : First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never> | First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never>, args_2: First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>, never> | First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>, never> | First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>, never>) => ReturnType<TypedFunction$1<any> & [...TKeys]> | ReturnType<TypedFunction$1<any> & Function & [...TKeys]> : [] extends AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>> | AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>> ? IsNarrowingFn$1<TypedFunction$1<any> & [...TKeys]> | IsNarrowingFn$1<TypedFunction$1<any> & Function & [...TKeys]> extends true ? [IsNonEmptyObject$1<ExpandDictionary$1<keyof [...TKeys] & (keyof [...TKeys] | keyof Function) extends ObjectKey$1 ? Pick<(TypedFunction$1<any> & AnyFunction$1) & [...TKeys], ObjectKey$1 & (keyof [...TKeys] & (keyof [...TKeys] | keyof Function))> : never>>] extends [true] ? (<T extends [First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never> | First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never>> : First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never> | First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never>, First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never> | First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never>> : First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never> | First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never>, First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>, never> | First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>, never> | First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>, never>, First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>, never>]>(...args: T) => ReturnType<TypedFunction$1<any> & [...TKeys]> | ReturnType<TypedFunction$1<any> & Function & [...TKeys]>) & ExpandDictionary$1<keyof [...TKeys] & (keyof [...TKeys] | keyof Function) extends ObjectKey$1 ? Pick<(TypedFunction$1<any> & AnyFunction$1) & [...TKeys], ObjectKey$1 & (keyof [...TKeys] & (keyof [...TKeys] | keyof Function))> : never> : <T extends [First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never> | First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never>> : First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never> | First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never>, First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never> | First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never>> : First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never> | First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never>, First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>, never> | First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>, never> | First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>, never>, First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>, never>]>(...args: T) => ReturnType<TypedFunction$1<any> & [...TKeys]> | ReturnType<TypedFunction$1<any> & Function & [...TKeys]> : IsNonEmptyObject$1<ExpandDictionary$1<keyof [...TKeys] & (keyof [...TKeys] | keyof Function) extends ObjectKey$1 ? Pick<(TypedFunction$1<any> & AnyFunction$1) & [...TKeys], ObjectKey$1 & (keyof [...TKeys] & (keyof [...TKeys] | keyof Function))> : never>> extends true ? ((args_0: First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never> | First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never>> : First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never> | First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never>, args_1: First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never> | First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never>> : First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never> | First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never>, args_2: First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>, never> | First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>, never> | First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>, never>, args_3: First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>, never>) => ReturnType<TypedFunction$1<any> & [...TKeys]> | ReturnType<TypedFunction$1<any> & Function & [...TKeys]>) & ExpandDictionary$1<keyof [...TKeys] & (keyof [...TKeys] | keyof Function) extends ObjectKey$1 ? Pick<(TypedFunction$1<any> & AnyFunction$1) & [...TKeys], ObjectKey$1 & (keyof [...TKeys] & (keyof [...TKeys] | keyof Function))> : never> : (args_0: First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never> | First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never>> : First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never> | First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never>, args_1: First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never> | First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never>> : First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never> | First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never>, args_2: First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>, never> | First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>, never> | First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>, never>, args_3: First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>, never>) => ReturnType<TypedFunction$1<any> & [...TKeys]> | ReturnType<TypedFunction$1<any> & Function & [...TKeys]> : [] extends AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>> | AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>> ? IsNarrowingFn$1<TypedFunction$1<any> & [...TKeys]> | IsNarrowingFn$1<TypedFunction$1<any> & Function & [...TKeys]> extends true ? [IsNonEmptyObject$1<ExpandDictionary$1<keyof [...TKeys] & (keyof [...TKeys] | keyof Function) extends ObjectKey$1 ? Pick<(TypedFunction$1<any> & AnyFunction$1) & [...TKeys], ObjectKey$1 & (keyof [...TKeys] & (keyof [...TKeys] | keyof Function))> : never>>] extends [true] ? (<T extends [First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never> | First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never>> : First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never> | First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never>, First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never> | First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never>> : First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never> | First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never>, First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>, never> | First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>, never> | First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>, never>, First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>, never>, First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>, never>]>(...args: T) => ReturnType<TypedFunction$1<any> & [...TKeys]> | ReturnType<TypedFunction$1<any> & Function & [...TKeys]>) & ExpandDictionary$1<keyof [...TKeys] & (keyof [...TKeys] | keyof Function) extends ObjectKey$1 ? Pick<(TypedFunction$1<any> & AnyFunction$1) & [...TKeys], ObjectKey$1 & (keyof [...TKeys] & (keyof [...TKeys] | keyof Function))> : never> : <T extends [First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never> | First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never>> : First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never> | First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never>, First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never> | First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never>> : First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never> | First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never>, First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>, never> | First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>, never> | First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>, never>, First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>, never>, First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>, never>]>(...args: T) => ReturnType<TypedFunction$1<any> & [...TKeys]> | ReturnType<TypedFunction$1<any> & Function & [...TKeys]> : IsNonEmptyObject$1<ExpandDictionary$1<keyof [...TKeys] & (keyof [...TKeys] | keyof Function) extends ObjectKey$1 ? Pick<(TypedFunction$1<any> & AnyFunction$1) & [...TKeys], ObjectKey$1 & (keyof [...TKeys] & (keyof [...TKeys] | keyof Function))> : never>> extends true ? ((args_0: First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never> | First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never>> : First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never> | First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never>, args_1: First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never> | First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never>> : First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never> | First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never>, args_2: First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>, never> | First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>, never> | First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>, never>, args_3: First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>, never>, args_4: First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>, never>) => ReturnType<TypedFunction$1<any> & [...TKeys]> | ReturnType<TypedFunction$1<any> & Function & [...TKeys]>) & ExpandDictionary$1<keyof [...TKeys] & (keyof [...TKeys] | keyof Function) extends ObjectKey$1 ? Pick<(TypedFunction$1<any> & AnyFunction$1) & [...TKeys], ObjectKey$1 & (keyof [...TKeys] & (keyof [...TKeys] | keyof Function))> : never> : (args_0: First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never> | First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never>> : First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never> | First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never>, args_1: First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never> | First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never>> : First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never> | First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never>, args_2: First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>, never> | First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>, never> | First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>, never>, args_3: First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>, never>, args_4: First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>, never>) => ReturnType<TypedFunction$1<any> & [...TKeys]> | ReturnType<TypedFunction$1<any> & Function & [...TKeys]> : [] extends AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>> | AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>> ? IsNarrowingFn$1<TypedFunction$1<any> & [...TKeys]> | IsNarrowingFn$1<TypedFunction$1<any> & Function & [...TKeys]> extends true ? [IsNonEmptyObject$1<ExpandDictionary$1<keyof [...TKeys] & (keyof [...TKeys] | keyof Function) extends ObjectKey$1 ? Pick<(TypedFunction$1<any> & AnyFunction$1) & [...TKeys], ObjectKey$1 & (keyof [...TKeys] & (keyof [...TKeys] | keyof Function))> : never>>] extends [true] ? (<T extends [First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never> | First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never>> : First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never> | First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never>, First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never> | First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never>> : First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never> | First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never>, First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>, never> | First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>, never> | First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>, never>, First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>, never>, First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>, never>, First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>, never>]>(...args: T) => ReturnType<TypedFunction$1<any> & [...TKeys]> | ReturnType<TypedFunction$1<any> & Function & [...TKeys]>) & ExpandDictionary$1<keyof [...TKeys] & (keyof [...TKeys] | keyof Function) extends ObjectKey$1 ? Pick<(TypedFunction$1<any> & AnyFunction$1) & [...TKeys], ObjectKey$1 & (keyof [...TKeys] & (keyof [...TKeys] | keyof Function))> : never> : <T extends [First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never> | First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never>> : First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never> | First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never>, First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never> | First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never>> : First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never> | First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never>, First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>, never> | First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>, never> | First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>, never>, First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>, never>, First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>, never>, First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>, never>]>(...args: T) => ReturnType<TypedFunction$1<any> & [...TKeys]> | ReturnType<TypedFunction$1<any> & Function & [...TKeys]> : IsNonEmptyObject$1<ExpandDictionary$1<keyof [...TKeys] & (keyof [...TKeys] | keyof Function) extends ObjectKey$1 ? Pick<(TypedFunction$1<any> & AnyFunction$1) & [...TKeys], ObjectKey$1 & (keyof [...TKeys] & (keyof [...TKeys] | keyof Function))> : never>> extends true ? ((args_0: First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never> | First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never>> : First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never> | First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never>, args_1: First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never> | First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never>> : First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never> | First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never>, args_2: First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>, never> | First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>, never> | First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>, never>, args_3: First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>, never>, args_4: First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>, never>, args_5: First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>, never>) => ReturnType<TypedFunction$1<any> & [...TKeys]> | ReturnType<TypedFunction$1<any> & Function & [...TKeys]>) & ExpandDictionary$1<keyof [...TKeys] & (keyof [...TKeys] | keyof Function) extends ObjectKey$1 ? Pick<(TypedFunction$1<any> & AnyFunction$1) & [...TKeys], ObjectKey$1 & (keyof [...TKeys] & (keyof [...TKeys] | keyof Function))> : never> : (args_0: First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never> | First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never>> : First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never> | First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never>, args_1: First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never> | First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never>> : First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never> | First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never>, args_2: First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>, never> | First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>, never> | First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>, never>, args_3: First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>, never>, args_4: First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>, never>, args_5: First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>, never>) => ReturnType<TypedFunction$1<any> & [...TKeys]> | ReturnType<TypedFunction$1<any> & Function & [...TKeys]> : [] extends AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>> | AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>> ? IsNarrowingFn$1<TypedFunction$1<any> & [...TKeys]> | IsNarrowingFn$1<TypedFunction$1<any> & Function & [...TKeys]> extends true ? [IsNonEmptyObject$1<ExpandDictionary$1<keyof [...TKeys] & (keyof [...TKeys] | keyof Function) extends ObjectKey$1 ? Pick<(TypedFunction$1<any> & AnyFunction$1) & [...TKeys], ObjectKey$1 & (keyof [...TKeys] & (keyof [...TKeys] | keyof Function))> : never>>] extends [true] ? (<T extends [First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never> | First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never>> : First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never> | First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never>, First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never> | First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never>> : First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never> | First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never>, First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>, never> | First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>, never> | First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>, never>, First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>, never>, First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>, never>, First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>, never>, First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>, never>]>(...args: T) => ReturnType<TypedFunction$1<any> & [...TKeys]> | ReturnType<TypedFunction$1<any> & Function & [...TKeys]>) & ExpandDictionary$1<keyof [...TKeys] & (keyof [...TKeys] | keyof Function) extends ObjectKey$1 ? Pick<(TypedFunction$1<any> & AnyFunction$1) & [...TKeys], ObjectKey$1 & (keyof [...TKeys] & (keyof [...TKeys] | keyof Function))> : never> : <T extends [First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never> | First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never>> : First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never> | First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never>, First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never> | First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never>> : First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never> | First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never>, First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>, never> | First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>, never> | First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>, never>, First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>, never>, First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>, never>, First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>, never>, First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>, never>]>(...args: T) => ReturnType<TypedFunction$1<any> & [...TKeys]> | ReturnType<TypedFunction$1<any> & Function & [...TKeys]> : IsNonEmptyObject$1<ExpandDictionary$1<keyof [...TKeys] & (keyof [...TKeys] | keyof Function) extends ObjectKey$1 ? Pick<(TypedFunction$1<any> & AnyFunction$1) & [...TKeys], ObjectKey$1 & (keyof [...TKeys] & (keyof [...TKeys] | keyof Function))> : never>> extends true ? ((args_0: First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never> | First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never>> : First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never> | First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never>, args_1: First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never> | First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never>> : First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never> | First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never>, args_2: First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>, never> | First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>, never> | First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>, never>, args_3: First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>, never>, args_4: First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>, never>, args_5: First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>, never>, args_6: First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>, never>) => ReturnType<TypedFunction$1<any> & [...TKeys]> | ReturnType<TypedFunction$1<any> & Function & [...TKeys]>) & ExpandDictionary$1<keyof [...TKeys] & (keyof [...TKeys] | keyof Function) extends ObjectKey$1 ? Pick<(TypedFunction$1<any> & AnyFunction$1) & [...TKeys], ObjectKey$1 & (keyof [...TKeys] & (keyof [...TKeys] | keyof Function))> : never> : (args_0: First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never> | First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never>> : First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never> | First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never>, args_1: First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never> | First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never>> : First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never> | First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never>, args_2: First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>, never> | First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>, never> | First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>, never>, args_3: First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>, never>, args_4: First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>, never>, args_5: First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>, never>, args_6: First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>, never>) => ReturnType<TypedFunction$1<any> & [...TKeys]> | ReturnType<TypedFunction$1<any> & Function & [...TKeys]> : [] extends AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>>> | AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>>> ? IsNarrowingFn$1<TypedFunction$1<any> & [...TKeys]> | IsNarrowingFn$1<TypedFunction$1<any> & Function & [...TKeys]> extends true ? [IsNonEmptyObject$1<ExpandDictionary$1<keyof [...TKeys] & (keyof [...TKeys] | keyof Function) extends ObjectKey$1 ? Pick<(TypedFunction$1<any> & AnyFunction$1) & [...TKeys], ObjectKey$1 & (keyof [...TKeys] & (keyof [...TKeys] | keyof Function))> : never>>] extends [true] ? (<T extends [First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never> | First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never>> : First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never> | First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never>, First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never> | First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never>> : First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never> | First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never>, First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>, never> | First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>, never> | First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>, never>, First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>, never>, First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>, never>, First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>, never>, First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>, never>, First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>>, never>]>(...args: T) => ReturnType<TypedFunction$1<any> & [...TKeys]> | ReturnType<TypedFunction$1<any> & Function & [...TKeys]>) & ExpandDictionary$1<keyof [...TKeys] & (keyof [...TKeys] | keyof Function) extends ObjectKey$1 ? Pick<(TypedFunction$1<any> & AnyFunction$1) & [...TKeys], ObjectKey$1 & (keyof [...TKeys] & (keyof [...TKeys] | keyof Function))> : never> : <T extends [First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never> | First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never>> : First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never> | First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never>, First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never> | First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never>> : First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never> | First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never>, First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>, never> | First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>, never> | First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>, never>, First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>, never>, First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>, never>, First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>, never>, First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>, never>, First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>>, never>]>(...args: T) => ReturnType<TypedFunction$1<any> & [...TKeys]> | ReturnType<TypedFunction$1<any> & Function & [...TKeys]> : IsNonEmptyObject$1<ExpandDictionary$1<keyof [...TKeys] & (keyof [...TKeys] | keyof Function) extends ObjectKey$1 ? Pick<(TypedFunction$1<any> & AnyFunction$1) & [...TKeys], ObjectKey$1 & (keyof [...TKeys] & (keyof [...TKeys] | keyof Function))> : never>> extends true ? ((args_0: First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never> | First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never>> : First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never> | First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never>, args_1: First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never> | First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never>> : First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never> | First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never>, args_2: First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>, never> | First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>, never> | First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>, never>, args_3: First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>, never>, args_4: First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>, never>, args_5: First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>, never>, args_6: First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>, never>, args_7: First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>>, never>) => ReturnType<TypedFunction$1<any> & [...TKeys]> | ReturnType<TypedFunction$1<any> & Function & [...TKeys]>) & ExpandDictionary$1<keyof [...TKeys] & (keyof [...TKeys] | keyof Function) extends ObjectKey$1 ? Pick<(TypedFunction$1<any> & AnyFunction$1) & [...TKeys], ObjectKey$1 & (keyof [...TKeys] & (keyof [...TKeys] | keyof Function))> : never> : (args_0: First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never> | First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never>> : First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never> | First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never>, args_1: First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never> | First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never>> : First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never> | First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never>, args_2: First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>, never> | First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>, never> | First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>, never>, args_3: First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>, never>, args_4: First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>, never>, args_5: First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>, never>, args_6: First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>, never>, args_7: First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>>, never>) => ReturnType<TypedFunction$1<any> & [...TKeys]> | ReturnType<TypedFunction$1<any> & Function & [...TKeys]> : [] extends AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>>>> | AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>>>> ? IsNarrowingFn$1<TypedFunction$1<any> & [...TKeys]> | IsNarrowingFn$1<TypedFunction$1<any> & Function & [...TKeys]> extends true ? [IsNonEmptyObject$1<ExpandDictionary$1<keyof [...TKeys] & (keyof [...TKeys] | keyof Function) extends ObjectKey$1 ? Pick<(TypedFunction$1<any> & AnyFunction$1) & [...TKeys], ObjectKey$1 & (keyof [...TKeys] & (keyof [...TKeys] | keyof Function))> : never>>] extends [true] ? (<T extends [First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never> | First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never>> : First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never> | First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never>, First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never> | First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never>> : First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never> | First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never>, First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>, never> | First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>, never> | First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>, never>, First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>, never>, First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>, never>, First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>, never>, First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>, never>, First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>>, never>, First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>>>, never>]>(...args: T) => ReturnType<TypedFunction$1<any> & [...TKeys]> | ReturnType<TypedFunction$1<any> & Function & [...TKeys]>) & ExpandDictionary$1<keyof [...TKeys] & (keyof [...TKeys] | keyof Function) extends ObjectKey$1 ? Pick<(TypedFunction$1<any> & AnyFunction$1) & [...TKeys], ObjectKey$1 & (keyof [...TKeys] & (keyof [...TKeys] | keyof Function))> : never> : <T extends [First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never> | First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never>> : First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never> | First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never>, First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never> | First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never>> : First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never> | First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never>, First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>, never> | First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>, never> | First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>, never>, First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>, never>, First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>, never>, First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>, never>, First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>, never>, First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>>, never>, First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>>>, never>]>(...args: T) => ReturnType<TypedFunction$1<any> & [...TKeys]> | ReturnType<TypedFunction$1<any> & Function & [...TKeys]> : IsNonEmptyObject$1<ExpandDictionary$1<keyof [...TKeys] & (keyof [...TKeys] | keyof Function) extends ObjectKey$1 ? Pick<(TypedFunction$1<any> & AnyFunction$1) & [...TKeys], ObjectKey$1 & (keyof [...TKeys] & (keyof [...TKeys] | keyof Function))> : never>> extends true ? ((args_0: First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never> | First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never>> : First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never> | First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never>, args_1: First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never> | First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never>> : First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never> | First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never>, args_2: First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>, never> | First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>, never> | First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>, never>, args_3: First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>, never>, args_4: First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>, never>, args_5: First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>, never>, args_6: First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>, never>, args_7: First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>>, never>, args_8: First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>>>, never>) => ReturnType<TypedFunction$1<any> & [...TKeys]> | ReturnType<TypedFunction$1<any> & Function & [...TKeys]>) & ExpandDictionary$1<keyof [...TKeys] & (keyof [...TKeys] | keyof Function) extends ObjectKey$1 ? Pick<(TypedFunction$1<any> & AnyFunction$1) & [...TKeys], ObjectKey$1 & (keyof [...TKeys] & (keyof [...TKeys] | keyof Function))> : never> : (args_0: First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never> | First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never>> : First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never> | First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never>, args_1: First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never> | First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never>> : First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never> | First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never>, args_2: First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>, never> | First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>, never> | First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>, never>, args_3: First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>, never>, args_4: First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>, never>, args_5: First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>, never>, args_6: First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>, never>, args_7: First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>>, never>, args_8: First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>>>, never>) => ReturnType<TypedFunction$1<any> & [...TKeys]> | ReturnType<TypedFunction$1<any> & Function & [...TKeys]> : [] extends AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>>>>> | AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>>>>> ? IsNarrowingFn$1<TypedFunction$1<any> & [...TKeys]> | IsNarrowingFn$1<TypedFunction$1<any> & Function & [...TKeys]> extends true ? [IsNonEmptyObject$1<ExpandDictionary$1<keyof [...TKeys] & (keyof [...TKeys] | keyof Function) extends ObjectKey$1 ? Pick<(TypedFunction$1<any> & AnyFunction$1) & [...TKeys], ObjectKey$1 & (keyof [...TKeys] & (keyof [...TKeys] | keyof Function))> : never>>] extends [true] ? (<T extends [First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never> | First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never>> : First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never> | First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never>, First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never> | First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never>> : First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never> | First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never>, First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>, never> | First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>, never> | First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>, never>, First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>, never>, First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>, never>, First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>, never>, First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>, never>, First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>>, never>, First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>>>, never>, First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>>>>, never>]>(...args: T) => ReturnType<TypedFunction$1<any> & [...TKeys]> | ReturnType<TypedFunction$1<any> & Function & [...TKeys]>) & ExpandDictionary$1<keyof [...TKeys] & (keyof [...TKeys] | keyof Function) extends ObjectKey$1 ? Pick<(TypedFunction$1<any> & AnyFunction$1) & [...TKeys], ObjectKey$1 & (keyof [...TKeys] & (keyof [...TKeys] | keyof Function))> : never> : <T extends [First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never> | First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never>> : First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never> | First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never>, First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never> | First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never>> : First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never> | First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never>, First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>, never> | First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>, never> | First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>, never>, First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>, never>, First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>, never>, First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>, never>, First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>, never>, First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>>, never>, First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>>>, never>, First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>>>>, never>]>(...args: T) => ReturnType<TypedFunction$1<any> & [...TKeys]> | ReturnType<TypedFunction$1<any> & Function & [...TKeys]> : IsNonEmptyObject$1<ExpandDictionary$1<keyof [...TKeys] & (keyof [...TKeys] | keyof Function) extends ObjectKey$1 ? Pick<(TypedFunction$1<any> & AnyFunction$1) & [...TKeys], ObjectKey$1 & (keyof [...TKeys] & (keyof [...TKeys] | keyof Function))> : never>> extends true ? ((args_0: First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never> | First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never>> : First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never> | First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never>, args_1: First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never> | First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never>> : First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never> | First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never>, args_2: First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>, never> | First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>, never> | First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>, never>, args_3: First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>, never>, args_4: First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>, never>, args_5: First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>, never>, args_6: First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>, never>, args_7: First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>>, never>, args_8: First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>>>, never>, args_9: First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>>>>, never>) => ReturnType<TypedFunction$1<any> & [...TKeys]> | ReturnType<TypedFunction$1<any> & Function & [...TKeys]>) & ExpandDictionary$1<keyof [...TKeys] & (keyof [...TKeys] | keyof Function) extends ObjectKey$1 ? Pick<(TypedFunction$1<any> & AnyFunction$1) & [...TKeys], ObjectKey$1 & (keyof [...TKeys] & (keyof [...TKeys] | keyof Function))> : never> : (args_0: First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never> | First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never>> : First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never> | First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never>, args_1: First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never> | First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never>> : First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never> | First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never>, args_2: First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>, never> | First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>, never> | First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>, never>, args_3: First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>, never>, args_4: First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>, never>, args_5: First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>, never>, args_6: First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>, never>, args_7: First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>>, never>, args_8: First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>>>, never>, args_9: First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>>>>, never>) => ReturnType<TypedFunction$1<any> & [...TKeys]> | ReturnType<TypedFunction$1<any> & Function & [...TKeys]> : /*elided*/ any : AnyFunction$1 & [...TKeys] : ExpandRecursively$1<[...TKeys]>;
15891
+ keys: [...TKeys] extends AnyFunction$1 ? AnyFunction$1 & [...TKeys] extends TypedFunction$1<any> ? [] extends Parameters<TypedFunction$1<any> & [...TKeys]> | Parameters<TypedFunction$1<any> & Function & [...TKeys]> ? IsNarrowingFn$1<TypedFunction$1<any> & [...TKeys]> | IsNarrowingFn$1<TypedFunction$1<any> & Function & [...TKeys]> extends true ? [IsNonEmptyObject$1<ExpandDictionary$1<keyof [...TKeys] & (keyof Function | keyof [...TKeys]) extends ObjectKey$1 ? Pick<(TypedFunction$1<any> & AnyFunction$1) & [...TKeys], ObjectKey$1 & (keyof [...TKeys] & (keyof Function | keyof [...TKeys]))> : never>>] extends [true] ? (() => ReturnType<TypedFunction$1<any> & [...TKeys]> | ReturnType<TypedFunction$1<any> & Function & [...TKeys]>) & ExpandDictionary$1<keyof [...TKeys] & (keyof Function | keyof [...TKeys]) extends ObjectKey$1 ? Pick<(TypedFunction$1<any> & AnyFunction$1) & [...TKeys], ObjectKey$1 & (keyof [...TKeys] & (keyof Function | keyof [...TKeys]))> : never> : () => ReturnType<TypedFunction$1<any> & [...TKeys]> | ReturnType<TypedFunction$1<any> & Function & [...TKeys]> : IsNonEmptyObject$1<ExpandDictionary$1<keyof [...TKeys] & (keyof Function | keyof [...TKeys]) extends ObjectKey$1 ? Pick<(TypedFunction$1<any> & AnyFunction$1) & [...TKeys], ObjectKey$1 & (keyof [...TKeys] & (keyof Function | keyof [...TKeys]))> : never>> extends true ? (() => ReturnType<TypedFunction$1<any> & [...TKeys]> | ReturnType<TypedFunction$1<any> & Function & [...TKeys]>) & ExpandDictionary$1<keyof [...TKeys] & (keyof Function | keyof [...TKeys]) extends ObjectKey$1 ? Pick<(TypedFunction$1<any> & AnyFunction$1) & [...TKeys], ObjectKey$1 & (keyof [...TKeys] & (keyof Function | keyof [...TKeys]))> : never> : () => ReturnType<TypedFunction$1<any> & [...TKeys]> | ReturnType<TypedFunction$1<any> & Function & [...TKeys]> : [] extends AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>> | AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>> ? IsNarrowingFn$1<TypedFunction$1<any> & [...TKeys]> | IsNarrowingFn$1<TypedFunction$1<any> & Function & [...TKeys]> extends true ? [IsNonEmptyObject$1<ExpandDictionary$1<keyof [...TKeys] & (keyof Function | keyof [...TKeys]) extends ObjectKey$1 ? Pick<(TypedFunction$1<any> & AnyFunction$1) & [...TKeys], ObjectKey$1 & (keyof [...TKeys] & (keyof Function | keyof [...TKeys]))> : never>>] extends [true] ? (<T extends [First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never> | First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never>> : First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never> | First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never>]>(...args: T) => ReturnType<TypedFunction$1<any> & [...TKeys]> | ReturnType<TypedFunction$1<any> & Function & [...TKeys]>) & ExpandDictionary$1<keyof [...TKeys] & (keyof Function | keyof [...TKeys]) extends ObjectKey$1 ? Pick<(TypedFunction$1<any> & AnyFunction$1) & [...TKeys], ObjectKey$1 & (keyof [...TKeys] & (keyof Function | keyof [...TKeys]))> : never> : <T extends [First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never> | First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never>> : First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never> | First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never>]>(...args: T) => ReturnType<TypedFunction$1<any> & [...TKeys]> | ReturnType<TypedFunction$1<any> & Function & [...TKeys]> : IsNonEmptyObject$1<ExpandDictionary$1<keyof [...TKeys] & (keyof Function | keyof [...TKeys]) extends ObjectKey$1 ? Pick<(TypedFunction$1<any> & AnyFunction$1) & [...TKeys], ObjectKey$1 & (keyof [...TKeys] & (keyof Function | keyof [...TKeys]))> : never>> extends true ? ((args_0: First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never> | First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never>> : First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never> | First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never>) => ReturnType<TypedFunction$1<any> & [...TKeys]> | ReturnType<TypedFunction$1<any> & Function & [...TKeys]>) & ExpandDictionary$1<keyof [...TKeys] & (keyof Function | keyof [...TKeys]) extends ObjectKey$1 ? Pick<(TypedFunction$1<any> & AnyFunction$1) & [...TKeys], ObjectKey$1 & (keyof [...TKeys] & (keyof Function | keyof [...TKeys]))> : never> : (args_0: First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never> | First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never>> : First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never> | First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never>) => ReturnType<TypedFunction$1<any> & [...TKeys]> | ReturnType<TypedFunction$1<any> & Function & [...TKeys]> : [] extends AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>> | AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>> ? IsNarrowingFn$1<TypedFunction$1<any> & [...TKeys]> | IsNarrowingFn$1<TypedFunction$1<any> & Function & [...TKeys]> extends true ? [IsNonEmptyObject$1<ExpandDictionary$1<keyof [...TKeys] & (keyof Function | keyof [...TKeys]) extends ObjectKey$1 ? Pick<(TypedFunction$1<any> & AnyFunction$1) & [...TKeys], ObjectKey$1 & (keyof [...TKeys] & (keyof Function | keyof [...TKeys]))> : never>>] extends [true] ? (<T extends [First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never> | First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never>> : First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never> | First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never>, First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never> | First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never>> : First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never> | First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never>]>(...args: T) => ReturnType<TypedFunction$1<any> & [...TKeys]> | ReturnType<TypedFunction$1<any> & Function & [...TKeys]>) & ExpandDictionary$1<keyof [...TKeys] & (keyof Function | keyof [...TKeys]) extends ObjectKey$1 ? Pick<(TypedFunction$1<any> & AnyFunction$1) & [...TKeys], ObjectKey$1 & (keyof [...TKeys] & (keyof Function | keyof [...TKeys]))> : never> : <T extends [First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never> | First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never>> : First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never> | First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never>, First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never> | First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never>> : First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never> | First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never>]>(...args: T) => ReturnType<TypedFunction$1<any> & [...TKeys]> | ReturnType<TypedFunction$1<any> & Function & [...TKeys]> : IsNonEmptyObject$1<ExpandDictionary$1<keyof [...TKeys] & (keyof Function | keyof [...TKeys]) extends ObjectKey$1 ? Pick<(TypedFunction$1<any> & AnyFunction$1) & [...TKeys], ObjectKey$1 & (keyof [...TKeys] & (keyof Function | keyof [...TKeys]))> : never>> extends true ? ((args_0: First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never> | First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never>> : First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never> | First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never>, args_1: First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never> | First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never>> : First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never> | First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never>) => ReturnType<TypedFunction$1<any> & [...TKeys]> | ReturnType<TypedFunction$1<any> & Function & [...TKeys]>) & ExpandDictionary$1<keyof [...TKeys] & (keyof Function | keyof [...TKeys]) extends ObjectKey$1 ? Pick<(TypedFunction$1<any> & AnyFunction$1) & [...TKeys], ObjectKey$1 & (keyof [...TKeys] & (keyof Function | keyof [...TKeys]))> : never> : (args_0: First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never> | First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never>> : First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never> | First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never>, args_1: First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never> | First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never>> : First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never> | First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never>) => ReturnType<TypedFunction$1<any> & [...TKeys]> | ReturnType<TypedFunction$1<any> & Function & [...TKeys]> : [] extends AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>> | AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>> ? IsNarrowingFn$1<TypedFunction$1<any> & [...TKeys]> | IsNarrowingFn$1<TypedFunction$1<any> & Function & [...TKeys]> extends true ? [IsNonEmptyObject$1<ExpandDictionary$1<keyof [...TKeys] & (keyof Function | keyof [...TKeys]) extends ObjectKey$1 ? Pick<(TypedFunction$1<any> & AnyFunction$1) & [...TKeys], ObjectKey$1 & (keyof [...TKeys] & (keyof Function | keyof [...TKeys]))> : never>>] extends [true] ? (<T extends [First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never> | First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never>> : First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never> | First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never>, First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never> | First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never>> : First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never> | First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never>, First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>, never> | First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>, never> | First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>, never>]>(...args: T) => ReturnType<TypedFunction$1<any> & [...TKeys]> | ReturnType<TypedFunction$1<any> & Function & [...TKeys]>) & ExpandDictionary$1<keyof [...TKeys] & (keyof Function | keyof [...TKeys]) extends ObjectKey$1 ? Pick<(TypedFunction$1<any> & AnyFunction$1) & [...TKeys], ObjectKey$1 & (keyof [...TKeys] & (keyof Function | keyof [...TKeys]))> : never> : <T extends [First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never> | First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never>> : First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never> | First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never>, First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never> | First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never>> : First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never> | First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never>, First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>, never> | First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>, never> | First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>, never>]>(...args: T) => ReturnType<TypedFunction$1<any> & [...TKeys]> | ReturnType<TypedFunction$1<any> & Function & [...TKeys]> : IsNonEmptyObject$1<ExpandDictionary$1<keyof [...TKeys] & (keyof Function | keyof [...TKeys]) extends ObjectKey$1 ? Pick<(TypedFunction$1<any> & AnyFunction$1) & [...TKeys], ObjectKey$1 & (keyof [...TKeys] & (keyof Function | keyof [...TKeys]))> : never>> extends true ? ((args_0: First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never> | First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never>> : First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never> | First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never>, args_1: First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never> | First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never>> : First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never> | First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never>, args_2: First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>, never> | First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>, never> | First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>, never>) => ReturnType<TypedFunction$1<any> & [...TKeys]> | ReturnType<TypedFunction$1<any> & Function & [...TKeys]>) & ExpandDictionary$1<keyof [...TKeys] & (keyof Function | keyof [...TKeys]) extends ObjectKey$1 ? Pick<(TypedFunction$1<any> & AnyFunction$1) & [...TKeys], ObjectKey$1 & (keyof [...TKeys] & (keyof Function | keyof [...TKeys]))> : never> : (args_0: First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never> | First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never>> : First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never> | First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never>, args_1: First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never> | First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never>> : First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never> | First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never>, args_2: First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>, never> | First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>, never> | First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>, never>) => ReturnType<TypedFunction$1<any> & [...TKeys]> | ReturnType<TypedFunction$1<any> & Function & [...TKeys]> : [] extends AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>> | AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>> ? IsNarrowingFn$1<TypedFunction$1<any> & [...TKeys]> | IsNarrowingFn$1<TypedFunction$1<any> & Function & [...TKeys]> extends true ? [IsNonEmptyObject$1<ExpandDictionary$1<keyof [...TKeys] & (keyof Function | keyof [...TKeys]) extends ObjectKey$1 ? Pick<(TypedFunction$1<any> & AnyFunction$1) & [...TKeys], ObjectKey$1 & (keyof [...TKeys] & (keyof Function | keyof [...TKeys]))> : never>>] extends [true] ? (<T extends [First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never> | First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never>> : First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never> | First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never>, First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never> | First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never>> : First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never> | First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never>, First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>, never> | First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>, never> | First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>, never>, First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>, never>]>(...args: T) => ReturnType<TypedFunction$1<any> & [...TKeys]> | ReturnType<TypedFunction$1<any> & Function & [...TKeys]>) & ExpandDictionary$1<keyof [...TKeys] & (keyof Function | keyof [...TKeys]) extends ObjectKey$1 ? Pick<(TypedFunction$1<any> & AnyFunction$1) & [...TKeys], ObjectKey$1 & (keyof [...TKeys] & (keyof Function | keyof [...TKeys]))> : never> : <T extends [First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never> | First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never>> : First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never> | First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never>, First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never> | First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never>> : First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never> | First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never>, First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>, never> | First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>, never> | First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>, never>, First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>, never>]>(...args: T) => ReturnType<TypedFunction$1<any> & [...TKeys]> | ReturnType<TypedFunction$1<any> & Function & [...TKeys]> : IsNonEmptyObject$1<ExpandDictionary$1<keyof [...TKeys] & (keyof Function | keyof [...TKeys]) extends ObjectKey$1 ? Pick<(TypedFunction$1<any> & AnyFunction$1) & [...TKeys], ObjectKey$1 & (keyof [...TKeys] & (keyof Function | keyof [...TKeys]))> : never>> extends true ? ((args_0: First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never> | First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never>> : First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never> | First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never>, args_1: First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never> | First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never>> : First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never> | First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never>, args_2: First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>, never> | First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>, never> | First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>, never>, args_3: First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>, never>) => ReturnType<TypedFunction$1<any> & [...TKeys]> | ReturnType<TypedFunction$1<any> & Function & [...TKeys]>) & ExpandDictionary$1<keyof [...TKeys] & (keyof Function | keyof [...TKeys]) extends ObjectKey$1 ? Pick<(TypedFunction$1<any> & AnyFunction$1) & [...TKeys], ObjectKey$1 & (keyof [...TKeys] & (keyof Function | keyof [...TKeys]))> : never> : (args_0: First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never> | First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never>> : First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never> | First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never>, args_1: First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never> | First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never>> : First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never> | First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never>, args_2: First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>, never> | First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>, never> | First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>, never>, args_3: First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>, never>) => ReturnType<TypedFunction$1<any> & [...TKeys]> | ReturnType<TypedFunction$1<any> & Function & [...TKeys]> : [] extends AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>> | AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>> ? IsNarrowingFn$1<TypedFunction$1<any> & [...TKeys]> | IsNarrowingFn$1<TypedFunction$1<any> & Function & [...TKeys]> extends true ? [IsNonEmptyObject$1<ExpandDictionary$1<keyof [...TKeys] & (keyof Function | keyof [...TKeys]) extends ObjectKey$1 ? Pick<(TypedFunction$1<any> & AnyFunction$1) & [...TKeys], ObjectKey$1 & (keyof [...TKeys] & (keyof Function | keyof [...TKeys]))> : never>>] extends [true] ? (<T extends [First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never> | First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never>> : First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never> | First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never>, First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never> | First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never>> : First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never> | First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never>, First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>, never> | First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>, never> | First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>, never>, First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>, never>, First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>, never>]>(...args: T) => ReturnType<TypedFunction$1<any> & [...TKeys]> | ReturnType<TypedFunction$1<any> & Function & [...TKeys]>) & ExpandDictionary$1<keyof [...TKeys] & (keyof Function | keyof [...TKeys]) extends ObjectKey$1 ? Pick<(TypedFunction$1<any> & AnyFunction$1) & [...TKeys], ObjectKey$1 & (keyof [...TKeys] & (keyof Function | keyof [...TKeys]))> : never> : <T extends [First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never> | First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never>> : First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never> | First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never>, First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never> | First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never>> : First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never> | First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never>, First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>, never> | First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>, never> | First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>, never>, First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>, never>, First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>, never>]>(...args: T) => ReturnType<TypedFunction$1<any> & [...TKeys]> | ReturnType<TypedFunction$1<any> & Function & [...TKeys]> : IsNonEmptyObject$1<ExpandDictionary$1<keyof [...TKeys] & (keyof Function | keyof [...TKeys]) extends ObjectKey$1 ? Pick<(TypedFunction$1<any> & AnyFunction$1) & [...TKeys], ObjectKey$1 & (keyof [...TKeys] & (keyof Function | keyof [...TKeys]))> : never>> extends true ? ((args_0: First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never> | First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never>> : First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never> | First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never>, args_1: First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never> | First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never>> : First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never> | First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never>, args_2: First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>, never> | First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>, never> | First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>, never>, args_3: First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>, never>, args_4: First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>, never>) => ReturnType<TypedFunction$1<any> & [...TKeys]> | ReturnType<TypedFunction$1<any> & Function & [...TKeys]>) & ExpandDictionary$1<keyof [...TKeys] & (keyof Function | keyof [...TKeys]) extends ObjectKey$1 ? Pick<(TypedFunction$1<any> & AnyFunction$1) & [...TKeys], ObjectKey$1 & (keyof [...TKeys] & (keyof Function | keyof [...TKeys]))> : never> : (args_0: First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never> | First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never>> : First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never> | First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never>, args_1: First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never> | First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never>> : First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never> | First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never>, args_2: First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>, never> | First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>, never> | First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>, never>, args_3: First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>, never>, args_4: First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>, never>) => ReturnType<TypedFunction$1<any> & [...TKeys]> | ReturnType<TypedFunction$1<any> & Function & [...TKeys]> : [] extends AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>> | AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>> ? IsNarrowingFn$1<TypedFunction$1<any> & [...TKeys]> | IsNarrowingFn$1<TypedFunction$1<any> & Function & [...TKeys]> extends true ? [IsNonEmptyObject$1<ExpandDictionary$1<keyof [...TKeys] & (keyof Function | keyof [...TKeys]) extends ObjectKey$1 ? Pick<(TypedFunction$1<any> & AnyFunction$1) & [...TKeys], ObjectKey$1 & (keyof [...TKeys] & (keyof Function | keyof [...TKeys]))> : never>>] extends [true] ? (<T extends [First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never> | First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never>> : First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never> | First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never>, First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never> | First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never>> : First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never> | First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never>, First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>, never> | First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>, never> | First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>, never>, First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>, never>, First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>, never>, First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>, never>]>(...args: T) => ReturnType<TypedFunction$1<any> & [...TKeys]> | ReturnType<TypedFunction$1<any> & Function & [...TKeys]>) & ExpandDictionary$1<keyof [...TKeys] & (keyof Function | keyof [...TKeys]) extends ObjectKey$1 ? Pick<(TypedFunction$1<any> & AnyFunction$1) & [...TKeys], ObjectKey$1 & (keyof [...TKeys] & (keyof Function | keyof [...TKeys]))> : never> : <T extends [First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never> | First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never>> : First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never> | First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never>, First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never> | First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never>> : First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never> | First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never>, First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>, never> | First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>, never> | First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>, never>, First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>, never>, First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>, never>, First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>, never>]>(...args: T) => ReturnType<TypedFunction$1<any> & [...TKeys]> | ReturnType<TypedFunction$1<any> & Function & [...TKeys]> : IsNonEmptyObject$1<ExpandDictionary$1<keyof [...TKeys] & (keyof Function | keyof [...TKeys]) extends ObjectKey$1 ? Pick<(TypedFunction$1<any> & AnyFunction$1) & [...TKeys], ObjectKey$1 & (keyof [...TKeys] & (keyof Function | keyof [...TKeys]))> : never>> extends true ? ((args_0: First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never> | First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never>> : First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never> | First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never>, args_1: First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never> | First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never>> : First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never> | First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never>, args_2: First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>, never> | First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>, never> | First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>, never>, args_3: First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>, never>, args_4: First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>, never>, args_5: First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>, never>) => ReturnType<TypedFunction$1<any> & [...TKeys]> | ReturnType<TypedFunction$1<any> & Function & [...TKeys]>) & ExpandDictionary$1<keyof [...TKeys] & (keyof Function | keyof [...TKeys]) extends ObjectKey$1 ? Pick<(TypedFunction$1<any> & AnyFunction$1) & [...TKeys], ObjectKey$1 & (keyof [...TKeys] & (keyof Function | keyof [...TKeys]))> : never> : (args_0: First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never> | First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never>> : First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never> | First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never>, args_1: First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never> | First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never>> : First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never> | First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never>, args_2: First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>, never> | First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>, never> | First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>, never>, args_3: First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>, never>, args_4: First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>, never>, args_5: First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>, never>) => ReturnType<TypedFunction$1<any> & [...TKeys]> | ReturnType<TypedFunction$1<any> & Function & [...TKeys]> : [] extends AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>> | AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>> ? IsNarrowingFn$1<TypedFunction$1<any> & [...TKeys]> | IsNarrowingFn$1<TypedFunction$1<any> & Function & [...TKeys]> extends true ? [IsNonEmptyObject$1<ExpandDictionary$1<keyof [...TKeys] & (keyof Function | keyof [...TKeys]) extends ObjectKey$1 ? Pick<(TypedFunction$1<any> & AnyFunction$1) & [...TKeys], ObjectKey$1 & (keyof [...TKeys] & (keyof Function | keyof [...TKeys]))> : never>>] extends [true] ? (<T extends [First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never> | First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never>> : First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never> | First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never>, First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never> | First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never>> : First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never> | First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never>, First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>, never> | First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>, never> | First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>, never>, First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>, never>, First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>, never>, First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>, never>, First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>, never>]>(...args: T) => ReturnType<TypedFunction$1<any> & [...TKeys]> | ReturnType<TypedFunction$1<any> & Function & [...TKeys]>) & ExpandDictionary$1<keyof [...TKeys] & (keyof Function | keyof [...TKeys]) extends ObjectKey$1 ? Pick<(TypedFunction$1<any> & AnyFunction$1) & [...TKeys], ObjectKey$1 & (keyof [...TKeys] & (keyof Function | keyof [...TKeys]))> : never> : <T extends [First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never> | First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never>> : First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never> | First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never>, First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never> | First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never>> : First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never> | First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never>, First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>, never> | First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>, never> | First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>, never>, First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>, never>, First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>, never>, First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>, never>, First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>, never>]>(...args: T) => ReturnType<TypedFunction$1<any> & [...TKeys]> | ReturnType<TypedFunction$1<any> & Function & [...TKeys]> : IsNonEmptyObject$1<ExpandDictionary$1<keyof [...TKeys] & (keyof Function | keyof [...TKeys]) extends ObjectKey$1 ? Pick<(TypedFunction$1<any> & AnyFunction$1) & [...TKeys], ObjectKey$1 & (keyof [...TKeys] & (keyof Function | keyof [...TKeys]))> : never>> extends true ? ((args_0: First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never> | First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never>> : First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never> | First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never>, args_1: First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never> | First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never>> : First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never> | First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never>, args_2: First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>, never> | First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>, never> | First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>, never>, args_3: First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>, never>, args_4: First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>, never>, args_5: First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>, never>, args_6: First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>, never>) => ReturnType<TypedFunction$1<any> & [...TKeys]> | ReturnType<TypedFunction$1<any> & Function & [...TKeys]>) & ExpandDictionary$1<keyof [...TKeys] & (keyof Function | keyof [...TKeys]) extends ObjectKey$1 ? Pick<(TypedFunction$1<any> & AnyFunction$1) & [...TKeys], ObjectKey$1 & (keyof [...TKeys] & (keyof Function | keyof [...TKeys]))> : never> : (args_0: First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never> | First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never>> : First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never> | First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never>, args_1: First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never> | First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never>> : First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never> | First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never>, args_2: First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>, never> | First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>, never> | First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>, never>, args_3: First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>, never>, args_4: First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>, never>, args_5: First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>, never>, args_6: First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>, never>) => ReturnType<TypedFunction$1<any> & [...TKeys]> | ReturnType<TypedFunction$1<any> & Function & [...TKeys]> : [] extends AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>>> | AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>>> ? IsNarrowingFn$1<TypedFunction$1<any> & [...TKeys]> | IsNarrowingFn$1<TypedFunction$1<any> & Function & [...TKeys]> extends true ? [IsNonEmptyObject$1<ExpandDictionary$1<keyof [...TKeys] & (keyof Function | keyof [...TKeys]) extends ObjectKey$1 ? Pick<(TypedFunction$1<any> & AnyFunction$1) & [...TKeys], ObjectKey$1 & (keyof [...TKeys] & (keyof Function | keyof [...TKeys]))> : never>>] extends [true] ? (<T extends [First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never> | First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never>> : First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never> | First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never>, First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never> | First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never>> : First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never> | First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never>, First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>, never> | First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>, never> | First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>, never>, First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>, never>, First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>, never>, First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>, never>, First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>, never>, First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>>, never>]>(...args: T) => ReturnType<TypedFunction$1<any> & [...TKeys]> | ReturnType<TypedFunction$1<any> & Function & [...TKeys]>) & ExpandDictionary$1<keyof [...TKeys] & (keyof Function | keyof [...TKeys]) extends ObjectKey$1 ? Pick<(TypedFunction$1<any> & AnyFunction$1) & [...TKeys], ObjectKey$1 & (keyof [...TKeys] & (keyof Function | keyof [...TKeys]))> : never> : <T extends [First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never> | First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never>> : First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never> | First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never>, First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never> | First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never>> : First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never> | First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never>, First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>, never> | First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>, never> | First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>, never>, First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>, never>, First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>, never>, First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>, never>, First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>, never>, First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>>, never>]>(...args: T) => ReturnType<TypedFunction$1<any> & [...TKeys]> | ReturnType<TypedFunction$1<any> & Function & [...TKeys]> : IsNonEmptyObject$1<ExpandDictionary$1<keyof [...TKeys] & (keyof Function | keyof [...TKeys]) extends ObjectKey$1 ? Pick<(TypedFunction$1<any> & AnyFunction$1) & [...TKeys], ObjectKey$1 & (keyof [...TKeys] & (keyof Function | keyof [...TKeys]))> : never>> extends true ? ((args_0: First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never> | First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never>> : First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never> | First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never>, args_1: First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never> | First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never>> : First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never> | First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never>, args_2: First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>, never> | First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>, never> | First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>, never>, args_3: First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>, never>, args_4: First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>, never>, args_5: First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>, never>, args_6: First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>, never>, args_7: First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>>, never>) => ReturnType<TypedFunction$1<any> & [...TKeys]> | ReturnType<TypedFunction$1<any> & Function & [...TKeys]>) & ExpandDictionary$1<keyof [...TKeys] & (keyof Function | keyof [...TKeys]) extends ObjectKey$1 ? Pick<(TypedFunction$1<any> & AnyFunction$1) & [...TKeys], ObjectKey$1 & (keyof [...TKeys] & (keyof Function | keyof [...TKeys]))> : never> : (args_0: First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never> | First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never>> : First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never> | First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never>, args_1: First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never> | First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never>> : First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never> | First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never>, args_2: First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>, never> | First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>, never> | First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>, never>, args_3: First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>, never>, args_4: First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>, never>, args_5: First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>, never>, args_6: First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>, never>, args_7: First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>>, never>) => ReturnType<TypedFunction$1<any> & [...TKeys]> | ReturnType<TypedFunction$1<any> & Function & [...TKeys]> : [] extends AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>>>> | AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>>>> ? IsNarrowingFn$1<TypedFunction$1<any> & [...TKeys]> | IsNarrowingFn$1<TypedFunction$1<any> & Function & [...TKeys]> extends true ? [IsNonEmptyObject$1<ExpandDictionary$1<keyof [...TKeys] & (keyof Function | keyof [...TKeys]) extends ObjectKey$1 ? Pick<(TypedFunction$1<any> & AnyFunction$1) & [...TKeys], ObjectKey$1 & (keyof [...TKeys] & (keyof Function | keyof [...TKeys]))> : never>>] extends [true] ? (<T extends [First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never> | First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never>> : First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never> | First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never>, First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never> | First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never>> : First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never> | First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never>, First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>, never> | First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>, never> | First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>, never>, First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>, never>, First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>, never>, First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>, never>, First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>, never>, First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>>, never>, First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>>>, never>]>(...args: T) => ReturnType<TypedFunction$1<any> & [...TKeys]> | ReturnType<TypedFunction$1<any> & Function & [...TKeys]>) & ExpandDictionary$1<keyof [...TKeys] & (keyof Function | keyof [...TKeys]) extends ObjectKey$1 ? Pick<(TypedFunction$1<any> & AnyFunction$1) & [...TKeys], ObjectKey$1 & (keyof [...TKeys] & (keyof Function | keyof [...TKeys]))> : never> : <T extends [First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never> | First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never>> : First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never> | First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never>, First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never> | First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never>> : First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never> | First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never>, First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>, never> | First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>, never> | First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>, never>, First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>, never>, First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>, never>, First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>, never>, First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>, never>, First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>>, never>, First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>>>, never>]>(...args: T) => ReturnType<TypedFunction$1<any> & [...TKeys]> | ReturnType<TypedFunction$1<any> & Function & [...TKeys]> : IsNonEmptyObject$1<ExpandDictionary$1<keyof [...TKeys] & (keyof Function | keyof [...TKeys]) extends ObjectKey$1 ? Pick<(TypedFunction$1<any> & AnyFunction$1) & [...TKeys], ObjectKey$1 & (keyof [...TKeys] & (keyof Function | keyof [...TKeys]))> : never>> extends true ? ((args_0: First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never> | First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never>> : First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never> | First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never>, args_1: First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never> | First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never>> : First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never> | First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never>, args_2: First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>, never> | First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>, never> | First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>, never>, args_3: First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>, never>, args_4: First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>, never>, args_5: First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>, never>, args_6: First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>, never>, args_7: First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>>, never>, args_8: First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>>>, never>) => ReturnType<TypedFunction$1<any> & [...TKeys]> | ReturnType<TypedFunction$1<any> & Function & [...TKeys]>) & ExpandDictionary$1<keyof [...TKeys] & (keyof Function | keyof [...TKeys]) extends ObjectKey$1 ? Pick<(TypedFunction$1<any> & AnyFunction$1) & [...TKeys], ObjectKey$1 & (keyof [...TKeys] & (keyof Function | keyof [...TKeys]))> : never> : (args_0: First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never> | First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never>> : First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never> | First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never>, args_1: First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never> | First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never>> : First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never> | First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never>, args_2: First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>, never> | First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>, never> | First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>, never>, args_3: First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>, never>, args_4: First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>, never>, args_5: First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>, never>, args_6: First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>, never>, args_7: First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>>, never>, args_8: First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>>>, never>) => ReturnType<TypedFunction$1<any> & [...TKeys]> | ReturnType<TypedFunction$1<any> & Function & [...TKeys]> : [] extends AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>>>>> | AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>>>>> ? IsNarrowingFn$1<TypedFunction$1<any> & [...TKeys]> | IsNarrowingFn$1<TypedFunction$1<any> & Function & [...TKeys]> extends true ? [IsNonEmptyObject$1<ExpandDictionary$1<keyof [...TKeys] & (keyof Function | keyof [...TKeys]) extends ObjectKey$1 ? Pick<(TypedFunction$1<any> & AnyFunction$1) & [...TKeys], ObjectKey$1 & (keyof [...TKeys] & (keyof Function | keyof [...TKeys]))> : never>>] extends [true] ? (<T extends [First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never> | First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never>> : First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never> | First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never>, First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never> | First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never>> : First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never> | First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never>, First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>, never> | First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>, never> | First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>, never>, First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>, never>, First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>, never>, First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>, never>, First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>, never>, First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>>, never>, First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>>>, never>, First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>>>>, never>]>(...args: T) => ReturnType<TypedFunction$1<any> & [...TKeys]> | ReturnType<TypedFunction$1<any> & Function & [...TKeys]>) & ExpandDictionary$1<keyof [...TKeys] & (keyof Function | keyof [...TKeys]) extends ObjectKey$1 ? Pick<(TypedFunction$1<any> & AnyFunction$1) & [...TKeys], ObjectKey$1 & (keyof [...TKeys] & (keyof Function | keyof [...TKeys]))> : never> : <T extends [First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never> | First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never>> : First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never> | First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never>, First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never> | First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never>> : First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never> | First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never>, First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>, never> | First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>, never> | First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>, never>, First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>, never>, First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>, never>, First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>, never>, First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>, never>, First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>>, never>, First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>>>, never>, First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>>>>, never>]>(...args: T) => ReturnType<TypedFunction$1<any> & [...TKeys]> | ReturnType<TypedFunction$1<any> & Function & [...TKeys]> : IsNonEmptyObject$1<ExpandDictionary$1<keyof [...TKeys] & (keyof Function | keyof [...TKeys]) extends ObjectKey$1 ? Pick<(TypedFunction$1<any> & AnyFunction$1) & [...TKeys], ObjectKey$1 & (keyof [...TKeys] & (keyof Function | keyof [...TKeys]))> : never>> extends true ? ((args_0: First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never> | First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never>> : First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never> | First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never>, args_1: First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never> | First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never>> : First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never> | First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never>, args_2: First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>, never> | First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>, never> | First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>, never>, args_3: First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>, never>, args_4: First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>, never>, args_5: First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>, never>, args_6: First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>, never>, args_7: First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>>, never>, args_8: First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>>>, never>, args_9: First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>>>>, never>) => ReturnType<TypedFunction$1<any> & [...TKeys]> | ReturnType<TypedFunction$1<any> & Function & [...TKeys]>) & ExpandDictionary$1<keyof [...TKeys] & (keyof Function | keyof [...TKeys]) extends ObjectKey$1 ? Pick<(TypedFunction$1<any> & AnyFunction$1) & [...TKeys], ObjectKey$1 & (keyof [...TKeys] & (keyof Function | keyof [...TKeys]))> : never> : (args_0: First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never> | First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never>> : First$1<Parameters<TypedFunction$1<any> & [...TKeys]>, never> | First$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>, never>, args_1: First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never> | First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never>> : First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>, never> | First$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>, never>, args_2: First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>, never> | First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>, never> | First$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>, never>, args_3: First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>, never>, args_4: First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>, never>, args_5: First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>, never>, args_6: First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>, never>, args_7: First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>>, never>, args_8: First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>>>, never>, args_9: First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>>>>, never> extends Dictionary$1<ObjectKey$1, unknown> ? ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>>>>, never>> | ExpandDictionary$1<Dictionary$1<ObjectKey$1, unknown> & First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>>>>, never>> : First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & [...TKeys]>>>>>>>>>>, never> | First$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<AfterFirst$1<Parameters<TypedFunction$1<any> & Function & [...TKeys]>>>>>>>>>>, never>) => ReturnType<TypedFunction$1<any> & [...TKeys]> | ReturnType<TypedFunction$1<any> & Function & [...TKeys]> : /*elided*/ any : AnyFunction$1 & [...TKeys] : ExpandRecursively$1<[...TKeys]>;
15723
15892
  } : ExpandRecursively$1<UnionToIntersection$3<([...TKeys] extends infer T ? T extends [...TKeys] ? T extends readonly PropertyKey[] ? TupleToUnion$1<T> : T : never : never) extends keyof TObj ? TObj extends readonly unknown[] ? Pick<TObj, keyof TObj & ([...TKeys] extends infer T_1 ? T_1 extends [...TKeys] ? T_1 extends readonly PropertyKey[] ? TupleToUnion$1<T_1> : T_1 : never : never)> : Pick<TObj, keyof TObj & ([...TKeys] extends infer T_2 ? T_2 extends [...TKeys] ? T_2 extends readonly PropertyKey[] ? TupleToUnion$1<T_2> : T_2 : never : never)> : never>>;
15724
15893
 
15725
15894
  /**
@@ -16161,7 +16330,7 @@ type Returns$1<T extends string | readonly string[], IF, ELSE> = T extends strin
16161
16330
  */
16162
16331
  declare function ifLowercaseChar<T extends string, IF, ELSE>(ch: T, callbackForMatch: <V extends T>(v: V) => IF, callbackForNoMatch: <V extends T>(v: V) => ELSE): Returns$1<T, IF, ELSE>;
16163
16332
 
16164
- type Convert$4<T, IF, ELSE> = If$1<Extends$1<T, UpperAlphaChar$1>, IF, ELSE>;
16333
+ type Convert$5<T, IF, ELSE> = If$1<Extends$1<T, UpperAlphaChar$1>, IF, ELSE>;
16165
16334
  /**
16166
16335
  * **ifUppercaseChar**(ch, callbackForMatch, callbackForNoMatch)
16167
16336
  *
@@ -16172,10 +16341,28 @@ type Convert$4<T, IF, ELSE> = If$1<Extends$1<T, UpperAlphaChar$1>, IF, ELSE>;
16172
16341
  */
16173
16342
  declare function ifUppercaseChar<T extends string, IF extends Narrowable$1, ELSE extends Narrowable$1>(
16174
16343
  /** the character to be tested */
16175
- ch: T & IsSingleChar$1<T> extends true ? T : never, callbackForMatch: ValueCallback$1<T, IF>, callbackForNoMatch: ValueCallback$1<T, ELSE>): Convert$4<T, IF, ELSE>;
16344
+ ch: T & IsSingleChar$1<T> extends true ? T : never, callbackForMatch: ValueCallback$1<T, IF>, callbackForNoMatch: ValueCallback$1<T, ELSE>): Convert$5<T, IF, ELSE>;
16176
16345
 
16177
16346
  type Ext = "string" | "number" | "boolean";
16178
- type InferenceVars<T extends string, V extends readonly [str: string[], num: string[], bool: string[]] = [[], [], []]> = T extends `${string}{{${OptSpace$1}infer ${infer Var} extends ${infer Type extends Ext}${OptSpace$1}}}${infer REST}` ? Type extends "number" ? InferenceVars<REST, [V[0], [...V[1], Var], V[2]]> : Type extends "boolean" ? InferenceVars<REST, [V[0], V[1], [...V[2], Var]]> : InferenceVars<REST, [[...V[0], Var], V[1], V[2]]> : T extends `${string}{{${OptSpace$1}infer ${infer Var}${OptSpace$1}as ${infer Type extends Ext}${OptSpace$1}}}${infer REST}` ? Type extends "number" ? InferenceVars<REST, [V[0], [...V[1], Var], V[2]]> : Type extends "boolean" ? InferenceVars<REST, [V[0], V[1], [...V[2], Var]]> : InferenceVars<REST, [[...V[0], Var], V[1], V[2]]> : T extends `${string}{{${OptSpace$1}infer ${infer Var}${OptSpace$1}}}${infer REST}` ? InferenceVars<REST, [[...V[0], Var], V[1], V[2]]> : V;
16347
+ type START = "{{";
16348
+ type END = "}}";
16349
+ type InferredString = `infer ${string} extends string` | `infer ${string}`;
16350
+ type InferredNumber = `infer ${string} extends number`;
16351
+ type InferredBoolean = `infer ${string} extends boolean`;
16352
+ type InferenceVars<T extends string, Vars extends [strings: string[], nums: string[], bools: string[]] = [[], [], []]> = T extends `${infer _HEAD}${START}${infer Content}${END}${infer REST}` ? (Content extends `${OptSpace$1}infer ${infer Var} extends ${infer Type extends Ext}${OptSpace$1}` ? Type extends "string" ? InferenceVars<REST, [[...Vars[0], Var], Vars[1], Vars[2]]> : Type extends "number" ? InferenceVars<REST, [Vars[0], [...Vars[1], Var], Vars[2]]> : InferenceVars<REST, [Vars[0], Vars[1], [...Vars[2], Var]]> : Content extends `${OptSpace$1}infer ${infer Var2}${OptSpace$1}` ? InferenceVars<REST, [[...Vars[0], Var2], Vars[1], Vars[2]]> : InferenceVars<REST, Vars>) : Vars;
16353
+ type TypeLiteral<T extends string, Sections extends readonly string[] = []> = T extends `${infer HEAD}${START}${infer Content}${END}${infer REST}` ? Content extends InferredNumber ? TypeLiteral<REST, [...Sections, `${HEAD}${number}`]> : Content extends InferredBoolean ? TypeLiteral<REST, [...Sections, `${HEAD}${boolean}`]> : Content extends InferredString ? TypeLiteral<REST, [...Sections, `${HEAD}${string}`]> : Content extends "string" ? TypeLiteral<REST, [...Sections, `${HEAD}${string}`]> : Content extends "number" ? TypeLiteral<REST, [...Sections, `${HEAD}${number}`]> : Content extends "boolean" ? TypeLiteral<REST, [...Sections, `${HEAD}${boolean}`]> : TypeLiteral<REST, [...Sections, Content]> : Join$1<Sections>;
16354
+ /**
16355
+ * The pattern matching that Typescript employs works less well when
16356
+ * we include `${number}` or `${boolean}` string literals in our pattern.
16357
+ *
16358
+ * For this reason this utility looks for all "blocks" but only looks at them
16359
+ * as `${string}` blocks. This allows for a the runtime system to match on
16360
+ * a more capable pattern match while maintaining consistency in the "type":
16361
+ *
16362
+ * - when `TypeLiteral` matches the pattern then we _know_ we can match
16363
+ * - when `WideTypeLiteral` matches the pattern then we defer to runtime
16364
+ */
16365
+ type WiderTypeLiteral<T extends string, Sections extends readonly string[] = []> = T extends `${infer HEAD}${START}${infer Content}${END}${infer REST}` ? Content extends InferredNumber ? WiderTypeLiteral<REST, [...Sections, `${HEAD}${string}`]> : Content extends InferredBoolean ? WiderTypeLiteral<REST, [...Sections, `${HEAD}${string}`]> : Content extends InferredString ? WiderTypeLiteral<REST, [...Sections, `${HEAD}${string}`]> : Content extends "string" ? WiderTypeLiteral<REST, [...Sections, `${HEAD}${string}`]> : Content extends "number" ? WiderTypeLiteral<REST, [...Sections, `${HEAD}${string}`]> : Content extends "boolean" ? WiderTypeLiteral<REST, [...Sections, `${HEAD}${string}`]> : WiderTypeLiteral<REST, [...Sections, Content]> : Join$1<Sections>;
16179
16366
  type StrVars<T extends string> = InferenceVars<T>[0];
16180
16367
  type NumVars<T extends string> = InferenceVars<T>[1];
16181
16368
  type BoolVars<T extends string> = InferenceVars<T>[2];
@@ -16183,11 +16370,40 @@ type Shape$2<T extends string> = ExpandDictionary$1<Record<StrVars<T>[number], s
16183
16370
  type Lit$1 = "string" | "number" | "boolean";
16184
16371
  type LiteralSections<T extends string, V extends Lit$1[] = []> = T extends `${string}{{${OptSpace$1}${infer Section extends Lit$1}${OptSpace$1}}}${infer REST}` ? LiteralSections<REST, [...V, Section]> : V;
16185
16372
  /**
16186
- * Boolean operator which indicates whether the string literal has any dynamic segments or not
16373
+ * Boolean operator which indicates whether the string literal has any dynamic
16374
+ * segments or not
16187
16375
  */
16188
16376
  type IsDynamic<T extends string> = LiteralSections<T>["length"] extends 0 ? InferenceVars<T>["length"] extends 0 ? false : true : true;
16189
- type GetInference<TPattern extends string> = <T extends string>(test: T) => Shape$2<TPattern> | false;
16377
+ interface GetInferenceProps<TPattern extends string> {
16378
+ vars: {
16379
+ string: StrVars<TPattern>;
16380
+ numeric: NumVars<TPattern>;
16381
+ boolean: BoolVars<TPattern>;
16382
+ };
16383
+ typeLiteral: TypeLiteral<TPattern>;
16384
+ typeWide: WiderTypeLiteral<TPattern>;
16385
+ }
16386
+ type GetInference<TPattern extends string> = (<T extends string>(test: T) => T extends TypeLiteral<TPattern> ? Shape$2<TPattern> : T extends WiderTypeLiteral<TPattern> ? false | Shape$2<TPattern> : IsWideString$1<T> extends true ? false | Shape$2<TPattern> : false) & GetInferenceProps<TPattern>;
16190
16387
  type Returns$3<T extends string> = IsDynamic<T> extends true ? GetInference<T> : never;
16388
+ /**
16389
+ * **infer**`(pattern)`
16390
+ *
16391
+ * Builds a interference function from a Typescript _string literal template_
16392
+ * where:
16393
+ *
16394
+ * - the template string accepts `{{ string }}` instead of `${string}`, etc.
16395
+ * for matching blocks of string characters
16396
+ * - you can also extract parts of the string with syntax of `{{ infer Foo }}`
16397
+ * - you can also look for _numeric_ or _boolean_ string literals:
16398
+ * - `{{ boolean }}`
16399
+ * - `{{ infer Bar as number }}`
16400
+ *
16401
+ * ```ts
16402
+ * const matcher = infer("{{ infer foo }}-bar");
16403
+ * // "foo"
16404
+ * const {foo} = matcher("foo-bar");
16405
+ * ```
16406
+ */
16191
16407
  declare function infer<TTempl extends string>(inference: TTempl): Returns$3<TTempl>;
16192
16408
 
16193
16409
  /**
@@ -17094,6 +17310,15 @@ declare function lookupCountryAlpha3<T extends Suggest$1<Iso3166_1_Alpha2$1 | Is
17094
17310
  */
17095
17311
  declare function lookupCountryCode<T extends Suggest$1<Iso3166_1_Alpha2$1 | Iso3166_1_Alpha3$1 | Iso3166_1_CountryName$1>>(token: T): T extends Iso3166_1_CountryName$1 ? Iso3166CodeLookup$1<T> : Iso3166CodeLookup$1<Uppercase<AsString$1<T>>>;
17096
17312
 
17313
+ type Mapper<TFrom extends AnyObject$1, TTo> = (<TInput extends TFrom>(from: TInput) => TTo) & {
17314
+ kind: "Mapper";
17315
+ map: <TInput extends readonly TFrom[]>(from: TInput) => {
17316
+ [K in keyof TInput]: TTo;
17317
+ };
17318
+ };
17319
+ declare function createObjectMap<TFrom extends AnyObject$1, TTo extends AnyObject$1>(): <TMap extends ObjectMap$1<TFrom, TTo>>(map: TMap) => ObjectMapConversion$1<TFrom, TTo, TMap>;
17320
+ declare function createMapper<TFrom extends AnyObject$1, TTo extends AnyObject$1>(): <TFn extends <TInput extends TFrom>(cb: TInput) => { [K in keyof TInput]: TTo; }>(fn: TFn) => Mapper<TFrom, TTo>;
17321
+
17097
17322
  declare function mergeObjects<D extends Narrowable$1, O extends Narrowable$1, TDefault extends NarrowObject$1<D>, TOverride extends NarrowObject$1<O>>(defVal: TDefault, override: TOverride): MergeObjects$1<TDefault, TOverride>;
17098
17323
 
17099
17324
  /**
@@ -18027,7 +18252,7 @@ declare function isDomainName<T>(val: T): val is T & DomainName$1<AsString$1<T>>
18027
18252
  * Type guard which checks whether the value is a valid URL source
18028
18253
  * (aka, an IP address or a Domain Name)
18029
18254
  */
18030
- declare function isUrlSource<T>(val: T): val is (T & DomainName$1<AsString$1<T>>) | (T & (`${number}.${number}.${number}.${number}` | `0${string}:${string}` | `1${string}:${string}` | `2${string}:${string}` | `3${string}:${string}` | `4${string}:${string}` | `5${string}:${string}` | `6${string}:${string}` | `7${string}:${string}` | `8${string}:${string}` | `9${string}:${string}` | `A${string}:${string}` | `B${string}:${string}` | `C${string}:${string}` | `D${string}:${string}` | `E${string}:${string}` | `F${string}:${string}` | `a${string}:${string}` | `b${string}:${string}` | `c${string}:${string}` | `d${string}:${string}` | `e${string}:${string}` | `f${string}:${string}`));
18255
+ declare function isUrlSource<T>(val: T): val is (T & DomainName$1<AsString$1<T>>) | (T & (`${number}.${number}.${number}.${number}` | `A${string}:${string}` | `B${string}:${string}` | `C${string}:${string}` | `D${string}:${string}` | `E${string}:${string}` | `F${string}:${string}` | `a${string}:${string}` | `b${string}:${string}` | `c${string}:${string}` | `d${string}:${string}` | `e${string}:${string}` | `f${string}:${string}` | `1${string}:${string}` | `2${string}:${string}` | `3${string}:${string}` | `4${string}:${string}` | `5${string}:${string}` | `6${string}:${string}` | `0${string}:${string}` | `7${string}:${string}` | `8${string}:${string}` | `9${string}:${string}`));
18031
18256
  /**
18032
18257
  * **hasUrlQueryParameter**`(val,prop)`
18033
18258
  *
@@ -18854,6 +19079,27 @@ type ApiEscape<T extends Dictionary | TypedFunction | ApiCallback<Api>> = T exte
18854
19079
  */
18855
19080
  type ApiHandler<TApi extends Api, _THandle extends (t: unknown, e: ErrorCondition) => unknown> = (api: TApi) => <R>(result: R) => unknown;
18856
19081
 
19082
+ type Convert$4<TKeys extends readonly (ObjectKey & keyof TObj)[], TObj extends AnyObject, TResult extends AnyObject> = [] extends TKeys ? ExpandDictionary<TResult> : Convert$4<AfterFirst<TKeys>, TObj, TResult & Record<First<TKeys>, <T extends TObj[First<TKeys>]>() => T>>;
19083
+ /**
19084
+ * **ObjectToApi**`<TObj>`
19085
+ *
19086
+ * Converts any object `TObj` to an object with:
19087
+ *
19088
+ * - the _same_ keys plus a done() function
19089
+ * - all the values of `T` -- which are not functions already --
19090
+ * will be made into a function returning the value.
19091
+ * - the `TDef` property is the value _type_ to return;
19092
+ * use utilities like `shape()`, `union()` etc. to define
19093
+ */
19094
+ type ObjectToApi<TObj extends AnyObject, TDef = never> = Keys<TObj> extends readonly (ObjectKey & keyof TObj)[] ? Convert$4<Keys<TObj>, TObj, {
19095
+ __kind: "ObjectApi";
19096
+ done: () => TDef;
19097
+ }> : never;
19098
+ /**
19099
+ * A callback signature for an object converted via `ObjectToApi`
19100
+ */
19101
+ type ObjectApiCallback<TObj extends AnyObject, TDef = never> = ((api: ObjectToApi<TObj, TDef>) => unknown);
19102
+
18857
19103
  /**
18858
19104
  * **AnyArray**
18859
19105
  *
@@ -19646,6 +19892,31 @@ type NotNull = Something | undefined;
19646
19892
  */
19647
19893
  type NumericSign = "+" | "-";
19648
19894
 
19895
+ type ReqKeys<K extends readonly (ObjectKey & keyof O)[], I extends AnyObject, O extends AnyObject, R extends AnyObject = EmptyObject> = [] extends K ? Required<R> : ReqKeys<AfterFirst<K>, I, O, R & Record<First<K>, O[First<K>] | (<R extends O[First<K>]>(v: I) => R)>>;
19896
+ type OptKeys<K extends readonly (ObjectKey & keyof O)[], I extends AnyObject, O extends AnyObject, R extends AnyObject = EmptyObject> = [] extends K ? Partial<R> : ReqKeys<AfterFirst<K>, I, O, R & Record<First<K>, O[First<K>] | (<R extends O[First<K>]>(v: I) => R)>>;
19897
+ /**
19898
+ * **ObjectMap**`<I,O>`
19899
+ *
19900
+ * A dictionary who's keys map to the keys of `O` and values extend
19901
+ * either:
19902
+ *
19903
+ * 1. `O[key]`
19904
+ * 2. `<TInput extends I>(input: I) => O[key]`
19905
+ *
19906
+ * This dictionary structure describes a converion from type `I` to
19907
+ * type `O` though the eyes of the structure of `O`.
19908
+ *
19909
+ * **Related**: `ObjectMapConversion`
19910
+ */
19911
+ type ObjectMap<I extends AnyObject, O extends AnyObject> = (i: I) => ExpandDictionary<ReqKeys<RequiredKeys<O>, I, O> & OptKeys<RequiredKeys<O>, I, O>>;
19912
+ type ObjectMapConversion<I extends AnyObject, O extends AnyObject, M extends ObjectMap<I, O>> = <TInput extends I>(input: TInput) => {
19913
+ [K in keyof M]: K extends keyof O ? M[K] extends TypedFunction ? ReturnType<M[K]> : M[K] : never;
19914
+ };
19915
+ type ObjectMapper<I extends AnyObject, O extends AnyObject> = <T extends I>(input: T) => {
19916
+ [K in keyof O]: O[K];
19917
+ };
19918
+ type ObjectMapperCallback<I extends AnyObject, O extends AnyObject> = ((cb: ObjectMapper<I, O>) => unknown);
19919
+
19649
19920
  /**
19650
19921
  * **Scalar**
19651
19922
  *
@@ -19936,10 +20207,6 @@ type PreProcess$5<TContent, TComparator> = TContent extends readonly unknown[] ?
19936
20207
  */
19937
20208
  type Contains<TContent extends string | number | readonly unknown[], TComparator> = [IsWideType<TContent>] extends [true] ? boolean : PreProcess$5<TContent, TComparator>;
19938
20209
 
19939
- type _Contains<TList extends readonly unknown[], THasAll extends Narrowable[], TResults extends readonly boolean[] = []> = [] extends THasAll ? TResults : Contains<TList, First<THasAll>> extends true ? _Contains<TList, AfterFirst<THasAll>, [
19940
- ...TResults,
19941
- true
19942
- ]> : [false];
19943
20210
  /**
19944
20211
  * **ContainsAll**`<TList, THasAll>`
19945
20212
  *
@@ -19949,7 +20216,22 @@ type _Contains<TList extends readonly unknown[], THasAll extends Narrowable[], T
19949
20216
  *
19950
20217
  * **Related:** `DoesExtend`, `ContainsSome`
19951
20218
  */
19952
- type ContainsAll<TList extends readonly unknown[], THasAll extends Narrowable[]> = And<_Contains<TList, THasAll>>;
20219
+ type ContainsAll<TList extends readonly unknown[], THasAll extends readonly unknown[]> = And<{
20220
+ [K in keyof THasAll]: Contains<TList, THasAll[K]>;
20221
+ }>;
20222
+
20223
+ /**
20224
+ * **ContainsSome**`<TList, TFind>`
20225
+ *
20226
+ * Type utility which provides a boolean response based on
20227
+ * whether the list `TList` contains _some_ of the values passed
20228
+ * in for `TFind`.
20229
+ *
20230
+ * **Related:** `DoesExtend`, `ContainsSome`
20231
+ */
20232
+ type ContainsSome<TList extends readonly unknown[], TFind extends readonly unknown[]> = Or<{
20233
+ [K in keyof TFind]: Contains<TList, TFind[K]>;
20234
+ }>;
19953
20235
 
19954
20236
  type YMD$1<T> = T extends `${number}-${number}-${number}` ? T extends `${infer Year}-${infer Month}-${infer Day}` ? [Year, Month, Day] : never : T extends `${number}` ? [Slice<T, 0, 4>, Slice<T, 4, 2>, Slice<T, 6, 2>] : never;
19955
20237
  type Validate$3<T> = T extends readonly [string, string, string] ? T[0] extends `${NumericChar}${NumericChar}${NumericChar}${NumericChar}` ? T[1] extends `${NumericCharZeroToTwo}${NumericChar}` ? T[2] extends `${NumericCharZeroToThree}${NumericChar}` ? true : false : false : false : false;
@@ -20635,6 +20917,24 @@ type CheckIt<T extends Dictionary> = IsNever<keyof T> extends true ? false : IsE
20635
20917
  */
20636
20918
  type IsObjectLiteral<T> = IsNever<T> extends true ? false : T extends Dictionary ? IsEqual<T, ExplicitlyEmptyObject> extends true ? true : CheckIt<T> : false;
20637
20919
 
20920
+ /**
20921
+ * Tests to see if `T` is a union type where one of the union members is
20922
+ * _undefined_.
20923
+ *
20924
+ * **Related:** `IsRequired`
20925
+ */
20926
+ type IsOptional<T> = IsUnion<T> extends true ? Contains<UnionToTuple$1<T>, undefined> extends true ? true : false : false;
20927
+ /**
20928
+ * Tests to see if `T` is a union type and if it is, it validates that
20929
+ * none of the union members are _undefined_.
20930
+ *
20931
+ * - if `T` is explicitly typed as `undefined` this will report as **true**;
20932
+ * meaning it is required that it is of a certain type (aka, _undefined_)
20933
+ *
20934
+ * **Related:** `IsOptional`
20935
+ */
20936
+ type IsRequired<T> = Not<IsOptional<T>>;
20937
+
20638
20938
  type Process$1l<T> = [IsNever<T>] extends [true] ? false : [IsScalar<T>] extends [true] ? true : [IsUndefined<T>] extends [true] ? true : [IsUnion<T>] extends [true] ? boolean : false;
20639
20939
  /**
20640
20940
  * **IsOptionalScalar**`<T>`
@@ -20868,6 +21168,24 @@ type _Validate<T extends object> = "value" extends keyof T ? true : false;
20868
21168
  */
20869
21169
  type IsVueRef<T> = T extends object ? If<IsEqual<_Len<T>, 0>, false, Retain<_Keys$6<T>, string>["length"] extends 1 ? _Validate<T> : false> : false;
20870
21170
 
21171
+ /**
21172
+ * **IsWideNumber**`<T>`
21173
+ *
21174
+ * Boolean operator which returns `true` when a _wide_ number
21175
+ * is passed in as `T`. It reports `false` on all other values
21176
+ * including _numeric literals_.
21177
+ */
21178
+ type IsWideNumber<T> = IsEqual<T, number>;
21179
+
21180
+ /**
21181
+ * **IsWideString**`<T>`
21182
+ *
21183
+ * Boolean operator which returns `true` when a _wide_ string
21184
+ * is passed in as `T`. It reports `false` on all other values
21185
+ * including _literal strings_.
21186
+ */
21187
+ type IsWideString<T> = IsEqual<T, string>;
21188
+
20871
21189
  /**
20872
21190
  * **IsWideScalar**`<T>`
20873
21191
  *
@@ -21363,6 +21681,7 @@ declare const RESULT: {
21363
21681
  readonly Ok: "ok";
21364
21682
  readonly Err: "err";
21365
21683
  };
21684
+
21366
21685
  /**
21367
21686
  * The 9 provinces to the US which are granted State codes.
21368
21687
  */
@@ -24090,6 +24409,7 @@ declare const PHONE_FORMAT: readonly ["Dashed (e.g., 456-555-1212)", "Dotted (e.
24090
24409
  * `[code, 3 letter country code, 2 letter country code]`
24091
24410
  */
24092
24411
  declare const PHONE_COUNTRY_CODES: readonly [readonly ["886", "TWN", "TW"], readonly ["93", "AFG", "AF"], readonly ["355", "ALB", "AL"], readonly ["213", "DZA", "DZ"], readonly ["1-684", "ASM", "AS"], readonly ["376", "AND", "AD"], readonly ["244", "AGO", "AO"], readonly ["1-264", "AIA", "AI"], readonly ["672", "ATA", "AQ"], readonly ["1-268", "ATG", "AG"], readonly ["54", "ARG", "AR"], readonly ["374", "ARM", "AM"], readonly ["297", "ABW", "AW"], readonly ["61", "AUS", "AU"], readonly ["43", "AUT", "AT"], readonly ["994", "AZE", "AZ"], readonly ["1-242", "BHS", "BS"], readonly ["973", "BHR", "BH"], readonly ["880", "BGD", "BD"], readonly ["1-246", "BRB", "BB"], readonly ["375", "BLR", "BY"], readonly ["32", "BEL", "BE"], readonly ["501", "BLZ", "BZ"], readonly ["229", "BEN", "BJ"], readonly ["1-441", "BMU", "BM"], readonly ["975", "BTN", "BT"], readonly ["591", "BOL", "BO"], readonly ["599", "BES", "BQ"], readonly ["387", "BIH", "BA"], readonly ["267", "BWA", "BW"], readonly ["47", "BVT", "BV"], readonly ["55", "BRA", "BR"], readonly ["246", "IOT", "IO"], readonly ["1-284", "VGB", "VG"], readonly ["673", "BRN", "BN"], readonly ["359", "BGR", "BG"], readonly ["226", "BFA", "BF"], readonly ["257", "BDI", "BI"], readonly ["238", "CPV", "CV"], readonly ["855", "KHM", "KH"], readonly ["237", "CMR", "CM"], readonly ["1", "CAN", "CA"], readonly ["1-345", "CYM", "KY"], readonly ["236", "CAF", "CF"], readonly ["235", "TCD", "TD"], readonly ["56", "CHL", "CL"], readonly ["86", "CHN", "CN"], readonly ["852", "HKG", "HK"], readonly ["853", "MAC", "MO"], readonly ["61", "CXR", "CX"], readonly ["61", "CCK", "CC"], readonly ["57", "COL", "CO"], readonly ["269", "COM", "KM"], readonly ["242", "COG", "CG"], readonly ["682", "COK", "CK"], readonly ["506", "CRI", "CR"], readonly ["385", "HRV", "HR"], readonly ["53", "CUB", "CU"], readonly ["599", "CUW", "CW"], readonly ["357", "CYP", "CY"], readonly ["420", "CZE", "CZ"], readonly ["225", "CIV", "CI"], readonly ["850", "PRK", "KP"], readonly ["243", "COD", "CD"], readonly ["45", "DNK", "DK"], readonly ["253", "DJI", "DJ"], readonly ["1-767", "DMA", "DM"], readonly ["1-809", "DOM", "DO"], readonly ["1-829", "DOM", "DO"], readonly ["1-849", "DOM", "DO"], readonly ["593", "ECU", "EC"], readonly ["20", "EGY", "EG"], readonly ["503", "SLV", "SV"], readonly ["240", "GNQ", "GQ"], readonly ["291", "ERI", "ER"], readonly ["372", "EST", "EE"], readonly ["268", "SWZ", "SZ"], readonly ["251", "ETH", "ET"], readonly ["500", "FLK", "FK"], readonly ["298", "FRO", "FO"], readonly ["679", "FJI", "FJ"], readonly ["358", "FIN", "FI"], readonly ["33", "FRA", "FR"], readonly ["594", "GUF", "GF"], readonly ["689", "PYF", "PF"], readonly ["262", "ATF", "TF"], readonly ["241", "GAB", "GA"], readonly ["220", "GMB", "GM"], readonly ["995", "GEO", "GE"], readonly ["49", "DEU", "DE"], readonly ["233", "GHA", "GH"], readonly ["350", "GIB", "GI"], readonly ["30", "GRC", "GR"], readonly ["299", "GRL", "GL"], readonly ["1-473", "GRD", "GD"], readonly ["590", "GLP", "GP"], readonly ["1-671", "GUM", "GU"], readonly ["502", "GTM", "GT"], readonly ["44", "GGY", "GG"], readonly ["224", "GIN", "GN"], readonly ["245", "GNB", "GW"], readonly ["592", "GUY", "GY"], readonly ["509", "HTI", "HT"], readonly ["672", "HMD", "HM"], readonly ["39-06", "VAT", "VA"], readonly ["504", "HND", "HN"], readonly ["36", "HUN", "HU"], readonly ["354", "ISL", "IS"], readonly ["91", "IND", "IN"], readonly ["62", "IDN", "ID"], readonly ["98", "IRN", "IR"], readonly ["964", "IRQ", "IQ"], readonly ["353", "IRL", "IE"], readonly ["44", "IMN", "IM"], readonly ["972", "ISR", "IL"], readonly ["39", "ITA", "IT"], readonly ["1-876", "JAM", "JM"], readonly ["81", "JPN", "JP"], readonly ["44", "JEY", "JE"], readonly ["962", "JOR", "JO"], readonly ["7", "KAZ", "KZ"], readonly ["254", "KEN", "KE"], readonly ["686", "KIR", "KI"], readonly ["965", "KWT", "KW"], readonly ["996", "KGZ", "KG"], readonly ["856", "LAO", "LA"], readonly ["371", "LVA", "LV"], readonly ["961", "LBN", "LB"], readonly ["266", "LSO", "LS"], readonly ["231", "LBR", "LR"], readonly ["218", "LBY", "LY"], readonly ["423", "LIE", "LI"], readonly ["370", "LTU", "LT"], readonly ["352", "LUX", "LU"], readonly ["261", "MDG", "MG"], readonly ["265", "MWI", "MW"], readonly ["60", "MYS", "MY"], readonly ["960", "MDV", "MV"], readonly ["223", "MLI", "ML"], readonly ["356", "MLT", "MT"], readonly ["692", "MHL", "MH"], readonly ["596", "MTQ", "MQ"], readonly ["222", "MRT", "MR"], readonly ["230", "MUS", "MU"], readonly ["262", "MYT", "YT"], readonly ["52", "MEX", "MX"], readonly ["691", "FSM", "FM"], readonly ["377", "MCO", "MC"], readonly ["976", "MNG", "MN"], readonly ["382", "MNE", "ME"], readonly ["1-664", "MSR", "MS"], readonly ["212", "MAR", "MA"], readonly ["258", "MOZ", "MZ"], readonly ["95", "MMR", "MM"], readonly ["264", "NAM", "NA"], readonly ["674", "NRU", "NR"], readonly ["977", "NPL", "NP"], readonly ["31", "NLD", "NL"], readonly ["687", "NCL", "NC"], readonly ["64", "NZL", "NZ"], readonly ["505", "NIC", "NI"], readonly ["227", "NER", "NE"], readonly ["234", "NGA", "NG"], readonly ["683", "NIU", "NU"], readonly ["672", "NFK", "NF"], readonly ["1-670", "MNP", "MP"], readonly ["47", "NOR", "NO"], readonly ["968", "OMN", "OM"], readonly ["92", "PAK", "PK"], readonly ["680", "PLW", "PW"], readonly ["507", "PAN", "PA"], readonly ["675", "PNG", "PG"], readonly ["595", "PRY", "PY"], readonly ["51", "PER", "PE"], readonly ["63", "PHL", "PH"], readonly ["870", "PCN", "PN"], readonly ["48", "POL", "PL"], readonly ["351", "PRT", "PT"], readonly ["974", "QAT", "QA"], readonly ["82", "KOR", "KR"], readonly ["373", "MDA", "MD"], readonly ["40", "ROU", "RO"], readonly ["7", "RUS", "RU"], readonly ["250", "RWA", "RW"], readonly ["262", "REU", "RE"], readonly ["590", "BLM", "BL"], readonly ["290", "SHN", "SH"], readonly ["1-869", "KNA", "KN"], readonly ["1-758", "LCA", "LC"], readonly ["590", "MAF", "MF"], readonly ["508", "SPM", "PM"], readonly ["1-784", "VCT", "VC"], readonly ["685", "WSM", "WS"], readonly ["378", "SMR", "SM"], readonly ["239", "STP", "ST"], readonly ["966", "SAU", "SA"], readonly ["221", "SEN", "SN"], readonly ["381", "SRB", "RS"], readonly ["248", "SYC", "SC"], readonly ["232", "SLE", "SL"], readonly ["65", "SGP", "SG"], readonly ["1-721", "SXM", "SX"], readonly ["421", "SVK", "SK"], readonly ["386", "SVN", "SI"], readonly ["677", "SLB", "SB"], readonly ["252", "SOM", "SO"], readonly ["27", "ZAF", "ZA"], readonly ["500", "SGS", "GS"], readonly ["211", "SSD", "SS"], readonly ["34", "ESP", "ES"], readonly ["94", "LKA", "LK"], readonly ["970", "PSE", "PS"], readonly ["249", "SDN", "SD"], readonly ["597", "SUR", "SR"], readonly ["47", "SJM", "SJ"], readonly ["46", "SWE", "SE"], readonly ["41", "CHE", "CH"], readonly ["963", "SYR", "SY"], readonly ["992", "TJK", "TJ"], readonly ["66", "THA", "TH"], readonly ["389", "MKD", "MK"], readonly ["670", "TLS", "TL"], readonly ["228", "TGO", "TG"], readonly ["690", "TKL", "TK"], readonly ["676", "TON", "TO"], readonly ["1-868", "TTO", "TT"], readonly ["216", "TUN", "TN"], readonly ["90", "TUR", "TR"], readonly ["993", "TKM", "TM"], readonly ["1-649", "TCA", "TC"], readonly ["688", "TUV", "TV"], readonly ["256", "UGA", "UG"], readonly ["380", "UKR", "UA"], readonly ["971", "ARE", "AE"], readonly ["44", "GBR", "GB"], readonly ["255", "TZA", "TZ"], readonly ["1-340", "VIR", "VI"], readonly ["1", "USA", "US"], readonly ["598", "URY", "UY"], readonly ["998", "UZB", "UZ"], readonly ["678", "VUT", "VU"], readonly ["58", "VEN", "VE"], readonly ["84", "VNM", "VN"], readonly ["681", "WLF", "WF"], readonly ["212", "ESH", "EH"], readonly ["967", "YEM", "YE"], readonly ["260", "ZMB", "ZM"], readonly ["263", "ZWE", "ZW"], readonly ["358", "ALA", "AX"]];
24412
+
24093
24413
  /**
24094
24414
  * **PLURAL_EXCEPTIONS**
24095
24415
  *
@@ -24237,7 +24557,7 @@ declare const SIMPLE_OPT_SCALAR_TOKENS: readonly ["Opt<string>", "Opt<number>",
24237
24557
  declare const SIMPLE_UNION_TOKENS: readonly [`union(${string})` | `union(${string},${string})`];
24238
24558
  declare const SIMPLE_MAP_KEYS: readonly ["string", "number", "Dict", "Dict<string, string>", "Dict<string, number>", "Dict<string, boolean>", "Dict<string, unknown>", "Dict<string, Opt<string>>", "Dict<string, Opt<number>>", "Dict<string, Opt<boolean>>"];
24239
24559
  declare const SIMPLE_MAP_VALUES: readonly ["string", "number", "Dict", "Dict<string, string>", "Dict<string, number>", "Dict<string, boolean>", "Dict<string, unknown>", "Dict<string, Opt<string>>", "Dict<string, Opt<number>>", "Dict<string, Opt<boolean>>", "boolean", "unknown", "undefined", "Dict", "Array", "Dict<string, Opt<string>>", "Dict<string, Opt<number>>", "Dict<string, Opt<boolean>>", "Dict<string, Opt<unknown>>"];
24240
- declare const SIMPLE_DICT_TOKENS: readonly ["Dict", "Dict<string, string>", "Dict<string, number>", "Dict<string, boolean>", "Dict<string, unknown>", "Dict<string, Opt<string>>", "Dict<string, Opt<number>>", "Dict<string, Opt<boolean>>", "Dict<string, Opt<unknown>>", `Dict<{${string}: string}>` | `Dict<{${string}: number}>` | `Dict<{${string}: boolean}>` | `Dict<{${string}: undefined}>` | `Dict<{${string}: never}>` | `Dict<{${string}: unknown}>` | `Dict<{${string}: null}>` | `Dict<{${string}: Opt<string>}>` | `Dict<{${string}: Opt<number>}>` | `Dict<{${string}: Opt<boolean>}>` | `Dict<{${string}: Opt<unknown>}>` | `Dict<{${string}: string(${string})}>` | `Dict<{${string}: number(${number})}>` | `Dict<{${string}: number(${number},${string})}>` | `Dict<{${string}: true}>` | `Dict<{${string}: false}>` | `Dict<{${string}: any}>` | `Dict<{${string}: Opt<true>}>` | `Dict<{${string}: Opt<false>}>` | `Dict<{${string}: Opt<null>}>` | `Dict<{${string}: Opt<undefined>}>` | `Dict<{${string}: Opt<any>}>` | `Dict<{${string}: Opt<string(${string})>}>` | `Dict<{${string}: Opt<string(${string},${string})>}>` | `Dict<{${string}: Opt<number(${number})}>` | `Dict<{${string}: Opt<number(${number},${string})}>`, `Dict<{${string}: string, ${string}: ${string}}` | `Dict<{${string}: number, ${string}: ${string}}` | `Dict<{${string}: boolean, ${string}: ${string}}` | `Dict<{${string}: undefined, ${string}: ${string}}` | `Dict<{${string}: never, ${string}: ${string}}` | `Dict<{${string}: unknown, ${string}: ${string}}` | `Dict<{${string}: null, ${string}: ${string}}` | `Dict<{${string}: Opt<string>, ${string}: ${string}}` | `Dict<{${string}: Opt<number>, ${string}: ${string}}` | `Dict<{${string}: Opt<boolean>, ${string}: ${string}}` | `Dict<{${string}: Opt<unknown>, ${string}: ${string}}` | `Dict<{${string}: string(${string}), ${string}: ${string}}` | `Dict<{${string}: number(${number}), ${string}: ${string}}` | `Dict<{${string}: number(${number},${string}), ${string}: ${string}}` | `Dict<{${string}: true, ${string}: ${string}}` | `Dict<{${string}: false, ${string}: ${string}}` | `Dict<{${string}: any, ${string}: ${string}}` | `Dict<{${string}: Opt<true>, ${string}: ${string}}` | `Dict<{${string}: Opt<false>, ${string}: ${string}}` | `Dict<{${string}: Opt<null>, ${string}: ${string}}` | `Dict<{${string}: Opt<undefined>, ${string}: ${string}}` | `Dict<{${string}: Opt<any>, ${string}: ${string}}` | `Dict<{${string}: Opt<string(${string})>, ${string}: ${string}}` | `Dict<{${string}: Opt<string(${string},${string})>, ${string}: ${string}}` | `Dict<{${string}: Opt<number(${number}), ${string}: ${string}}` | `Dict<{${string}: Opt<number(${number},${string}), ${string}: ${string}}`];
24560
+ declare const SIMPLE_DICT_TOKENS: readonly ["Dict", "Dict<string, string>", "Dict<string, number>", "Dict<string, boolean>", "Dict<string, unknown>", "Dict<string, Opt<string>>", "Dict<string, Opt<number>>", "Dict<string, Opt<boolean>>", "Dict<string, Opt<unknown>>", `Dict<{${string}: string}>` | `Dict<{${string}: number}>` | `Dict<{${string}: boolean}>` | `Dict<{${string}: undefined}>` | `Dict<{${string}: false}>` | `Dict<{${string}: true}>` | `Dict<{${string}: any}>` | `Dict<{${string}: never}>` | `Dict<{${string}: unknown}>` | `Dict<{${string}: null}>` | `Dict<{${string}: Opt<string>}>` | `Dict<{${string}: Opt<number>}>` | `Dict<{${string}: Opt<boolean>}>` | `Dict<{${string}: Opt<unknown>}>` | `Dict<{${string}: string(${string})}>` | `Dict<{${string}: number(${number})}>` | `Dict<{${string}: number(${number},${string})}>` | `Dict<{${string}: Opt<true>}>` | `Dict<{${string}: Opt<false>}>` | `Dict<{${string}: Opt<null>}>` | `Dict<{${string}: Opt<undefined>}>` | `Dict<{${string}: Opt<any>}>` | `Dict<{${string}: Opt<string(${string})>}>` | `Dict<{${string}: Opt<string(${string},${string})>}>` | `Dict<{${string}: Opt<number(${number})}>` | `Dict<{${string}: Opt<number(${number},${string})}>`, `Dict<{${string}: string, ${string}: ${string}}` | `Dict<{${string}: number, ${string}: ${string}}` | `Dict<{${string}: boolean, ${string}: ${string}}` | `Dict<{${string}: undefined, ${string}: ${string}}` | `Dict<{${string}: false, ${string}: ${string}}` | `Dict<{${string}: true, ${string}: ${string}}` | `Dict<{${string}: any, ${string}: ${string}}` | `Dict<{${string}: never, ${string}: ${string}}` | `Dict<{${string}: unknown, ${string}: ${string}}` | `Dict<{${string}: null, ${string}: ${string}}` | `Dict<{${string}: Opt<string>, ${string}: ${string}}` | `Dict<{${string}: Opt<number>, ${string}: ${string}}` | `Dict<{${string}: Opt<boolean>, ${string}: ${string}}` | `Dict<{${string}: Opt<unknown>, ${string}: ${string}}` | `Dict<{${string}: string(${string}), ${string}: ${string}}` | `Dict<{${string}: number(${number}), ${string}: ${string}}` | `Dict<{${string}: number(${number},${string}), ${string}: ${string}}` | `Dict<{${string}: Opt<true>, ${string}: ${string}}` | `Dict<{${string}: Opt<false>, ${string}: ${string}}` | `Dict<{${string}: Opt<null>, ${string}: ${string}}` | `Dict<{${string}: Opt<undefined>, ${string}: ${string}}` | `Dict<{${string}: Opt<any>, ${string}: ${string}}` | `Dict<{${string}: Opt<string(${string})>, ${string}: ${string}}` | `Dict<{${string}: Opt<string(${string},${string})>, ${string}: ${string}}` | `Dict<{${string}: Opt<number(${number}), ${string}: ${string}}` | `Dict<{${string}: Opt<number(${number},${string}), ${string}: ${string}}`];
24241
24561
  declare const SIMPLE_ARRAY_TOKENS: readonly ["Array", "Array<string>", `Array<string(${string})>`, "Array<number>", `Array<number(${number})>` | `Array<number(${number},${string})>`, "Array<boolean>", "Array<unknown>", "Array<Dict>", "Array<Set>", "Array<Map>"];
24242
24562
  declare const SIMPLE_MAP_TOKENS: readonly ["Map", "Map<string, string>" | "Map<string, number>" | "Map<string, boolean>" | "Map<string, undefined>" | "Map<string, unknown>" | "Map<string, Dict>" | "Map<string, Dict<string, string>>" | "Map<string, Dict<string, number>>" | "Map<string, Dict<string, boolean>>" | "Map<string, Dict<string, unknown>>" | "Map<string, Dict<string, Opt<string>>>" | "Map<string, Dict<string, Opt<number>>>" | "Map<string, Dict<string, Opt<boolean>>>" | "Map<string, Array>" | "Map<string, Dict<string, Opt<unknown>>>" | "Map<number, string>" | "Map<number, number>" | "Map<number, boolean>" | "Map<number, undefined>" | "Map<number, unknown>" | "Map<number, Dict>" | "Map<number, Dict<string, string>>" | "Map<number, Dict<string, number>>" | "Map<number, Dict<string, boolean>>" | "Map<number, Dict<string, unknown>>" | "Map<number, Dict<string, Opt<string>>>" | "Map<number, Dict<string, Opt<number>>>" | "Map<number, Dict<string, Opt<boolean>>>" | "Map<number, Array>" | "Map<number, Dict<string, Opt<unknown>>>" | "Map<Dict, string>" | "Map<Dict, number>" | "Map<Dict, boolean>" | "Map<Dict, undefined>" | "Map<Dict, unknown>" | "Map<Dict, Dict>" | "Map<Dict, Dict<string, string>>" | "Map<Dict, Dict<string, number>>" | "Map<Dict, Dict<string, boolean>>" | "Map<Dict, Dict<string, unknown>>" | "Map<Dict, Dict<string, Opt<string>>>" | "Map<Dict, Dict<string, Opt<number>>>" | "Map<Dict, Dict<string, Opt<boolean>>>" | "Map<Dict, Array>" | "Map<Dict, Dict<string, Opt<unknown>>>" | "Map<Dict<string, string>, string>" | "Map<Dict<string, string>, number>" | "Map<Dict<string, string>, boolean>" | "Map<Dict<string, string>, undefined>" | "Map<Dict<string, string>, unknown>" | "Map<Dict<string, string>, Dict>" | "Map<Dict<string, string>, Dict<string, string>>" | "Map<Dict<string, string>, Dict<string, number>>" | "Map<Dict<string, string>, Dict<string, boolean>>" | "Map<Dict<string, string>, Dict<string, unknown>>" | "Map<Dict<string, string>, Dict<string, Opt<string>>>" | "Map<Dict<string, string>, Dict<string, Opt<number>>>" | "Map<Dict<string, string>, Dict<string, Opt<boolean>>>" | "Map<Dict<string, string>, Array>" | "Map<Dict<string, string>, Dict<string, Opt<unknown>>>" | "Map<Dict<string, number>, string>" | "Map<Dict<string, number>, number>" | "Map<Dict<string, number>, boolean>" | "Map<Dict<string, number>, undefined>" | "Map<Dict<string, number>, unknown>" | "Map<Dict<string, number>, Dict>" | "Map<Dict<string, number>, Dict<string, string>>" | "Map<Dict<string, number>, Dict<string, number>>" | "Map<Dict<string, number>, Dict<string, boolean>>" | "Map<Dict<string, number>, Dict<string, unknown>>" | "Map<Dict<string, number>, Dict<string, Opt<string>>>" | "Map<Dict<string, number>, Dict<string, Opt<number>>>" | "Map<Dict<string, number>, Dict<string, Opt<boolean>>>" | "Map<Dict<string, number>, Array>" | "Map<Dict<string, number>, Dict<string, Opt<unknown>>>" | "Map<Dict<string, boolean>, string>" | "Map<Dict<string, boolean>, number>" | "Map<Dict<string, boolean>, boolean>" | "Map<Dict<string, boolean>, undefined>" | "Map<Dict<string, boolean>, unknown>" | "Map<Dict<string, boolean>, Dict>" | "Map<Dict<string, boolean>, Dict<string, string>>" | "Map<Dict<string, boolean>, Dict<string, number>>" | "Map<Dict<string, boolean>, Dict<string, boolean>>" | "Map<Dict<string, boolean>, Dict<string, unknown>>" | "Map<Dict<string, boolean>, Dict<string, Opt<string>>>" | "Map<Dict<string, boolean>, Dict<string, Opt<number>>>" | "Map<Dict<string, boolean>, Dict<string, Opt<boolean>>>" | "Map<Dict<string, boolean>, Array>" | "Map<Dict<string, boolean>, Dict<string, Opt<unknown>>>" | "Map<Dict<string, unknown>, string>" | "Map<Dict<string, unknown>, number>" | "Map<Dict<string, unknown>, boolean>" | "Map<Dict<string, unknown>, undefined>" | "Map<Dict<string, unknown>, unknown>" | "Map<Dict<string, unknown>, Dict>" | "Map<Dict<string, unknown>, Dict<string, string>>" | "Map<Dict<string, unknown>, Dict<string, number>>" | "Map<Dict<string, unknown>, Dict<string, boolean>>" | "Map<Dict<string, unknown>, Dict<string, unknown>>" | "Map<Dict<string, unknown>, Dict<string, Opt<string>>>" | "Map<Dict<string, unknown>, Dict<string, Opt<number>>>" | "Map<Dict<string, unknown>, Dict<string, Opt<boolean>>>" | "Map<Dict<string, unknown>, Array>" | "Map<Dict<string, unknown>, Dict<string, Opt<unknown>>>" | "Map<Dict<string, Opt<string>>, string>" | "Map<Dict<string, Opt<string>>, number>" | "Map<Dict<string, Opt<string>>, boolean>" | "Map<Dict<string, Opt<string>>, undefined>" | "Map<Dict<string, Opt<string>>, unknown>" | "Map<Dict<string, Opt<string>>, Dict>" | "Map<Dict<string, Opt<string>>, Dict<string, string>>" | "Map<Dict<string, Opt<string>>, Dict<string, number>>" | "Map<Dict<string, Opt<string>>, Dict<string, boolean>>" | "Map<Dict<string, Opt<string>>, Dict<string, unknown>>" | "Map<Dict<string, Opt<string>>, Dict<string, Opt<string>>>" | "Map<Dict<string, Opt<string>>, Dict<string, Opt<number>>>" | "Map<Dict<string, Opt<string>>, Dict<string, Opt<boolean>>>" | "Map<Dict<string, Opt<string>>, Array>" | "Map<Dict<string, Opt<string>>, Dict<string, Opt<unknown>>>" | "Map<Dict<string, Opt<number>>, string>" | "Map<Dict<string, Opt<number>>, number>" | "Map<Dict<string, Opt<number>>, boolean>" | "Map<Dict<string, Opt<number>>, undefined>" | "Map<Dict<string, Opt<number>>, unknown>" | "Map<Dict<string, Opt<number>>, Dict>" | "Map<Dict<string, Opt<number>>, Dict<string, string>>" | "Map<Dict<string, Opt<number>>, Dict<string, number>>" | "Map<Dict<string, Opt<number>>, Dict<string, boolean>>" | "Map<Dict<string, Opt<number>>, Dict<string, unknown>>" | "Map<Dict<string, Opt<number>>, Dict<string, Opt<string>>>" | "Map<Dict<string, Opt<number>>, Dict<string, Opt<number>>>" | "Map<Dict<string, Opt<number>>, Dict<string, Opt<boolean>>>" | "Map<Dict<string, Opt<number>>, Array>" | "Map<Dict<string, Opt<number>>, Dict<string, Opt<unknown>>>" | "Map<Dict<string, Opt<boolean>>, string>" | "Map<Dict<string, Opt<boolean>>, number>" | "Map<Dict<string, Opt<boolean>>, boolean>" | "Map<Dict<string, Opt<boolean>>, undefined>" | "Map<Dict<string, Opt<boolean>>, unknown>" | "Map<Dict<string, Opt<boolean>>, Dict>" | "Map<Dict<string, Opt<boolean>>, Dict<string, string>>" | "Map<Dict<string, Opt<boolean>>, Dict<string, number>>" | "Map<Dict<string, Opt<boolean>>, Dict<string, boolean>>" | "Map<Dict<string, Opt<boolean>>, Dict<string, unknown>>" | "Map<Dict<string, Opt<boolean>>, Dict<string, Opt<string>>>" | "Map<Dict<string, Opt<boolean>>, Dict<string, Opt<number>>>" | "Map<Dict<string, Opt<boolean>>, Dict<string, Opt<boolean>>>" | "Map<Dict<string, Opt<boolean>>, Array>" | "Map<Dict<string, Opt<boolean>>, Dict<string, Opt<unknown>>>", "WeakMap"];
24243
24563
  declare const SIMPLE_SET_TOKENS: readonly ["Set", "Set<string>" | "Set<number>" | "Set<boolean>" | "Set<unknown>" | "Set<Opt<string>>" | "Set<Opt<number>>" | "Set<Opt<boolean>>" | "Set<Opt<unknown>>"];
@@ -25067,6 +25387,10 @@ type CompleteError<TPartial extends PartialError, TRequired extends Req<TPartial
25067
25387
  library: TPartial["library"] extends string ? TPartial["library"] : "library" extends keyof TOpt ? TOpt["library"] extends string ? TOpt["library"] : never : never;
25068
25388
  }> & Omit<TOpt, "library" | "underlying">>;
25069
25389
 
25390
+ type ErrMsg<TType extends string, TContext extends AnyObject | string = "no desc"> = TContext extends string ? TType & {
25391
+ desc: TContext;
25392
+ } : TType & TContext;
25393
+
25070
25394
  interface TypeErrorInfo<TContext extends Record<string, unknown> = EmptyObject> {
25071
25395
  /**
25072
25396
  * if there is a particular "id" value which is useful to separate from the error message
@@ -32820,7 +33144,7 @@ type FnWithProps<TFn extends TypedFunction, TProps extends AnyObject, TClone ext
32820
33144
  */
32821
33145
  type HandleDoneFn<T> = T extends {
32822
33146
  done: TypedFunction;
32823
- } ? ReturnType<T["done"]> : T;
33147
+ } ? ReturnType<T["done"]> : T extends TypedFunction ? Parameters<T>["length"] extends 0 ? ReturnType<T> : T : T;
32824
33148
 
32825
33149
  /**
32826
33150
  * **IdentityFn**`<TValue, [TNarrow]>`
@@ -33872,12 +34196,11 @@ type FromSimpleToken<T extends SimpleToken> = SimpleType<T>;
33872
34196
  type _FromDefineObject<T extends Required<DefineObject>> = {
33873
34197
  [K in keyof T]: T[K] extends SimpleToken ? FromSimpleToken<T[K]> : T[K] extends ShapeCallback ? FromShapeCallback<T[K]> : never;
33874
34198
  };
33875
- type TypeFromDefineObject<T> = T;
33876
34199
  /**
33877
34200
  * Converts a `DefineObject` definition into the type that it is
33878
34201
  * defining.
33879
34202
  */
33880
- type FromDefineObject<T extends DefineObject> = TypeFromDefineObject<MakeKeysOptional<_FromDefineObject<Required<T>>, UnionToTuple$1<OptionalKeys<T>> extends readonly ObjectKey[] ? UnionToTuple$1<OptionalKeys<T>> : never>>;
34203
+ type FromDefineObject<T extends DefineObject> = MakeKeysOptional<_FromDefineObject<Required<T>>, UnionToTuple$1<OptionalKeys<T>> extends readonly ObjectKey[] ? UnionToTuple$1<OptionalKeys<T>> : never>;
33881
34204
  /**
33882
34205
  * **FromDefn**`<T, [TElse]>`
33883
34206
  *
@@ -34576,37 +34899,6 @@ type PublicKeyOf<TContainer extends Container> = TupleToUnion<PublicKeys<TContai
34576
34899
  */
34577
34900
  type PrivateKeyOf<TContainer extends Container> = TupleToUnion<PrivateKeys<TContainer>> extends PropertyKey ? TupleToUnion<PublicKeys<TContainer>> extends keyof TContainer ? TupleToUnion<PublicKeys<TContainer>> : never : never;
34578
34901
 
34579
- type MakeIntoUnion<K extends PropertyKey | readonly PropertyKey[]> = K extends readonly PropertyKey[] ? TupleToUnion<K> : K;
34580
- type MakeNumericIndex<T> = T;
34581
- /**
34582
- * **WithKeys**`<T,K>`
34583
- *
34584
- * This type utility will ensure that the type `T` will _retain_ the key/value
34585
- * pairs which extend `K`.
34586
- *
34587
- * It is very similar to **Pick** but rather `K` being restricted to
34588
- * being a string union, wth **WithKeys** you can use the union type
34589
- * or a readonly array of strings.
34590
- *
34591
- * ```ts
34592
- * type Test = { foo: 1, bar: number, baz: string };
34593
- * // { foo: 1, bar: number }
34594
- * type T1 = WithKeys<Test, "foo" | "bar">; // Pick syntax
34595
- * type T2 = WithKeys<Test, ["foo", "bar"]>;
34596
- * ```
34597
- */
34598
- type WithKeys<T extends AnyObject | Tuple, K extends PropertyKey | readonly PropertyKey[]> = ExpandRecursively<UnionToIntersection<MakeIntoUnion<K> extends keyof T ? T extends Tuple ? MakeNumericIndex<Pick<T, MakeIntoUnion<K>>> : Pick<T, MakeIntoUnion<K>> : never>>;
34599
-
34600
- type Process$e<TObj extends Dictionary, TKeys extends ObjectKey> = [] extends TKeys ? TObj : Omit<TObj, TKeys>;
34601
- /**
34602
- * **WithoutKeys**`<TObj, TKeys>`
34603
- *
34604
- * Removes the keys in `TKeys` from an object `TObj`. This is
34605
- * functionally equivalent to the `Omit<T,U>` built-in but rather than
34606
- * taking a union type it takes an array of keys.
34607
- */
34608
- type WithoutKeys<TObj extends Dictionary, TKeys extends ObjectKey | readonly ObjectKey[]> = TKeys extends readonly ObjectKey[] ? Process$e<TObj, TupleToUnion<TKeys>> : ExpandDictionary<Process$e<TObj, TKeys extends readonly ObjectKey[] ? TupleToUnion<TKeys> : TKeys>>;
34609
-
34610
34902
  type ProcessTupleKeys<TObj extends AnyObject, TKeys extends readonly ObjectKey[]> = ExpandDictionary<WithoutKeys<TObj, TKeys> & {
34611
34903
  [K in keyof WithKeys<TObj, TKeys>]?: K extends keyof TObj ? TObj[K] : never;
34612
34904
  }>;
@@ -34649,12 +34941,12 @@ type OptionalKeys<T extends AnyObject, V = Unset> = {
34649
34941
  } ? If<IsEqual<V, Unset>, K, K extends V ? K : never> : never;
34650
34942
  }[keyof T];
34651
34943
 
34652
- type Process$d<TObj extends Dictionary, TKeys extends readonly (ObjectKey & keyof TObj)[], TResult extends Dictionary = EmptyObject> = [] extends TKeys ? ExpandDictionary<TResult> : Process$d<TObj, AfterFirst<TKeys>, First<TKeys> extends string ? Record<CamelCase<First<TKeys>>, TObj[First<TKeys>]> & TResult : Record<First<TKeys>, TObj[First<TKeys>]> & TResult>;
34944
+ type Process$e<TObj extends Dictionary, TKeys extends readonly (ObjectKey & keyof TObj)[], TResult extends Dictionary = EmptyObject> = [] extends TKeys ? ExpandDictionary<TResult> : Process$e<TObj, AfterFirst<TKeys>, First<TKeys> extends string ? Record<CamelCase<First<TKeys>>, TObj[First<TKeys>]> & TResult : Record<First<TKeys>, TObj[First<TKeys>]> & TResult>;
34653
34945
  /**
34654
34946
  * Converts an object's keys to the **camelCase** equivalent
34655
34947
  * while keeping the values the same.
34656
34948
  */
34657
- type CamelKeys<T extends Dictionary> = MakeKeysOptional<Process$d<T, Keys<T>>, OptionalKeys<T> extends string ? UnionMutate<OptionalKeys<T>, "CamelCase"> extends string ? UnionMutate<OptionalKeys<T>, "CamelCase"> : "" : "">;
34949
+ type CamelKeys<T extends Dictionary> = MakeKeysOptional<Process$e<T, Keys<T>>, OptionalKeys<T> extends string ? UnionMutate<OptionalKeys<T>, "CamelCase"> extends string ? UnionMutate<OptionalKeys<T>, "CamelCase"> : "" : "">;
34658
34950
 
34659
34951
  /**
34660
34952
  * **CombinedKeys**`<A,B>`
@@ -34672,7 +34964,25 @@ type CombinedKeys<A extends Dictionary, B extends Dictionary> = Unique<[
34672
34964
  ...(IsObjectLiteral<B> extends true ? Keys<B> : [])
34673
34965
  ]>;
34674
34966
 
34675
- type Process$c<TKeys extends readonly string[], TValue, TObj extends Dictionary = EmptyObject> = [] extends TKeys ? TObj : Process$c<AfterFirst<TKeys>, TValue, TObj & Record<First<TKeys>, TValue>>;
34967
+ /**
34968
+ * Helper type to infer narrow types while constraining to a broad type.
34969
+ */
34970
+ type ConstrainObject<TObj extends AnyObject, TConstraint extends AnyObject> = {
34971
+ [K in keyof TConstraint]: K extends keyof TObj ? TObj[K] & TConstraint[K] : never;
34972
+ };
34973
+ type ConstrainedObjectCallback<TConstraint extends AnyObject> = <TReturn extends Narrowable>(cb: (input: ConstrainObject<TConstraint, TConstraint>) => TReturn) => (input: ConstrainObject<TConstraint, TConstraint>) => TReturn;
34974
+ /**
34975
+ * A function which will accept any object that meets the
34976
+ * defined constraint and will extract a narrow type from it.
34977
+ *
34978
+ * **Related:** `narrowObjectTo`
34979
+ */
34980
+ interface ConstrainedObjectIdentity<TConstraint extends AnyObject> {
34981
+ <T extends TConstraint>(input: T & ConstrainObject<T, TConstraint>): T;
34982
+ asCallback: ConstrainedObjectCallback<TConstraint>;
34983
+ }
34984
+
34985
+ type Process$d<TKeys extends readonly string[], TValue, TObj extends Dictionary = EmptyObject> = [] extends TKeys ? TObj : Process$d<AfterFirst<TKeys>, TValue, TObj & Record<First<TKeys>, TValue>>;
34676
34986
  /**
34677
34987
  * **CreateKV**`<TKeys,[TValue]>`
34678
34988
  *
@@ -34680,15 +34990,15 @@ type Process$c<TKeys extends readonly string[], TValue, TObj extends Dictionary
34680
34990
  * as `TKeys` and with all properties set to the value
34681
34991
  * of `TValue` (which defaults to `unknown`)
34682
34992
  */
34683
- type CreateKV<TKeys extends readonly string[], TValue = unknown> = ExpandRecursively<Process$c<TKeys, TValue>>;
34993
+ type CreateKV<TKeys extends readonly string[], TValue = unknown> = ExpandRecursively<Process$d<TKeys, TValue>>;
34684
34994
 
34685
- type Process$b<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$b<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$b<AfterFirst<TPayload>, TKeyProp, TValProp, TOutput> : Process$b<AfterFirst<TPayload>, TKeyProp, TValProp, TOutput>;
34995
+ type Process$c<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$c<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$c<AfterFirst<TPayload>, TKeyProp, TValProp, TOutput> : Process$c<AfterFirst<TPayload>, TKeyProp, TValProp, TOutput>;
34686
34996
  /**
34687
34997
  * **CreateLookup**
34688
34998
  *
34689
34999
  * Creates a dictionary lookup from a Tuple of similarly typed objects.
34690
35000
  */
34691
- type CreateLookup<TPayload extends readonly Record<ObjectKey, unknown>[], TKeyProp extends string, TValProp extends string> = ExpandRecursively<Process$b<TPayload, TKeyProp, TValProp>>;
35001
+ type CreateLookup<TPayload extends readonly Record<ObjectKey, unknown>[], TKeyProp extends string, TValProp extends string> = ExpandRecursively<Process$c<TPayload, TKeyProp, TValProp>>;
34692
35002
 
34693
35003
  type StringLiteralVar = "string" | "number" | "boolean" | "Metric" | "OptSpace" | "CountryCode" | "CountryCode2" | "CountryCode3" | "UsState" | "UsStateName" | "Zip5" | "ZipCode";
34694
35004
  type BaseConvert<T extends string> = ReplaceAll<ReplaceAll<ReplaceAll<T, `{{${OptSpace}string${OptSpace}}}`, `${string}`>, `{{${OptSpace}number${OptSpace}}}`, `${number}`>, `{{${OptSpace}boolean${OptSpace}}}`, `${boolean}`>;
@@ -35659,7 +35969,7 @@ type BuildObj<T extends readonly string[] | Dictionary | [Dictionary], TType> =
35659
35969
  */
35660
35970
  type EnsureKeys<TObj extends object, TKeys extends readonly string[] | Dictionary | [Dictionary], TType = unknown> = ExpandRecursively<TObj & BuildObj<TKeys, TType>>;
35661
35971
 
35662
- type Process$a<TObj extends Dictionary, TComparator, TOp extends ComparatorOperation, TKeys extends readonly ObjectKey[], TResult extends Dictionary = EmptyObject> = [] extends TKeys ? ExpandDictionary<TResult> : Process$a<TObj, TComparator, TOp, AfterFirst<TKeys>, Compare$1<TObj[First<TKeys>], TOp, TComparator> extends true ? TResult : TResult & Record<First<TKeys>, TObj[First<TKeys>]>>;
35972
+ type Process$b<TObj extends Dictionary, TComparator, TOp extends ComparatorOperation, TKeys extends readonly ObjectKey[], TResult extends Dictionary = EmptyObject> = [] extends TKeys ? ExpandDictionary<TResult> : Process$b<TObj, TComparator, TOp, AfterFirst<TKeys>, Compare$1<TObj[First<TKeys>], TOp, TComparator> extends true ? TResult : TResult & Record<First<TKeys>, TObj[First<TKeys>]>>;
35663
35973
  /**
35664
35974
  * **FilterProps**`<TObj, TComparator, [TOp]>`
35665
35975
  *
@@ -35670,7 +35980,7 @@ type Process$a<TObj extends Dictionary, TComparator, TOp extends ComparatorOpera
35670
35980
  * "extends" but you can change the comparison operation to
35671
35981
  * `equals`, `startsWith`, `endsWith`, ...
35672
35982
  */
35673
- type FilterProps<TObj extends Dictionary, TComparator, TOp extends ComparatorOperation = "extends"> = Process$a<TObj, TComparator, TOp, Keys<TObj>>;
35983
+ type FilterProps<TObj extends Dictionary, TComparator, TOp extends ComparatorOperation = "extends"> = Process$b<TObj, TComparator, TOp, Keys<TObj>>;
35674
35984
 
35675
35985
  /**
35676
35986
  * **FromMaybeRef**`<T>`
@@ -35680,12 +35990,12 @@ type FilterProps<TObj extends Dictionary, TComparator, TOp extends ComparatorOpe
35680
35990
  */
35681
35991
  type FromMaybeRef<T> = IsVueRef<T> extends true ? "value" extends keyof T ? T["value"] : never : T;
35682
35992
 
35683
- 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<KebabCase<First<TKeys>>, TObj[First<TKeys>]> & TResult : Record<First<TKeys>, TObj[First<TKeys>]> & TResult>;
35993
+ type Process$a<TObj extends Dictionary, TKeys extends readonly (ObjectKey & keyof TObj)[], TResult extends Dictionary = EmptyObject> = [] extends TKeys ? ExpandDictionary<TResult> : Process$a<TObj, AfterFirst<TKeys>, First<TKeys> extends string ? Record<KebabCase<First<TKeys>>, TObj[First<TKeys>]> & TResult : Record<First<TKeys>, TObj[First<TKeys>]> & TResult>;
35684
35994
  /**
35685
35995
  * Converts an object's keys to the **kebab-case** equivalent
35686
35996
  * while keeping the values the same.
35687
35997
  */
35688
- type KebabKeys<T extends Dictionary> = MakeKeysOptional<Process$9<T, Keys<T>>, OptionalKeys<T> extends string ? UnionMutate<OptionalKeys<T>, "KebabCase"> extends string ? UnionMutate<OptionalKeys<T>, "KebabCase"> : "" : "">;
35998
+ type KebabKeys<T extends Dictionary> = MakeKeysOptional<Process$a<T, Keys<T>>, OptionalKeys<T> extends string ? UnionMutate<OptionalKeys<T>, "KebabCase"> extends string ? UnionMutate<OptionalKeys<T>, "KebabCase"> : "" : "">;
35689
35999
 
35690
36000
  /**
35691
36001
  * **KeysEqualValue**`<TObj,TValue>`
@@ -35733,7 +36043,7 @@ type KeysWithoutValue<TObj extends AnyObject, TValue extends Narrowable> = {
35733
36043
  [K in keyof TObj]: TObj[K] extends TValue ? never : Readonly<K>;
35734
36044
  }[keyof TObj];
35735
36045
 
35736
- type Process$8<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$8<AfterFirst<TKeys>, TObj, TValue, [...TResults, First<TKeys>]> : Process$8<AfterFirst<TKeys>, TObj, TValue, TResults> : [TObj[First<TKeys>]] extends [TValue] ? Process$8<AfterFirst<TKeys>, TObj, TValue, [...TResults, First<TKeys>]> : Process$8<AfterFirst<TKeys>, TObj, TValue, TResults> : never;
36046
+ type Process$9<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$9<AfterFirst<TKeys>, TObj, TValue, [...TResults, First<TKeys>]> : Process$9<AfterFirst<TKeys>, TObj, TValue, TResults> : [TObj[First<TKeys>]] extends [TValue] ? Process$9<AfterFirst<TKeys>, TObj, TValue, [...TResults, First<TKeys>]> : Process$9<AfterFirst<TKeys>, TObj, TValue, TResults> : never;
35737
36047
  /**
35738
36048
  * **KeysWithValue**`<TObj,TValue>`
35739
36049
  *
@@ -35747,7 +36057,7 @@ type Process$8<TKeys extends readonly ObjectKey[], TObj extends Dictionary, TVal
35747
36057
  *
35748
36058
  * **Related:** `KeysEqualValue`
35749
36059
  */
35750
- type KeysWithValue<TObj extends Dictionary, TValue> = [IsObjectLiteral<TObj>] extends [true] ? Process$8<Keys<TObj>, TObj, TValue> : ObjectKey[];
36060
+ type KeysWithValue<TObj extends Dictionary, TValue> = [IsObjectLiteral<TObj>] extends [true] ? Process$9<Keys<TObj>, TObj, TValue> : ObjectKey[];
35751
36061
 
35752
36062
  /**
35753
36063
  * **KvFnDefn**
@@ -35894,7 +36204,7 @@ interface MapCardinalityConfig<IR extends OptRequired | undefined, OR extends Op
35894
36204
  * method which allows the user configure the specifics of the mapping.
35895
36205
  */
35896
36206
  interface ConfiguredMap<C extends FinalizedMapConfig<OptRequired, MapCardinalityIllustrated, OptRequired>> {
35897
- map: <I, O>(map: MapTo<I, O, C>) => Mapper<I, O, C>;
36207
+ map: <I, O>(map: MapTo<I, O, C>) => MapperOld<I, O, C>;
35898
36208
  input: MapIR<C>;
35899
36209
  cardinality: MapCard<C>;
35900
36210
  output: MapOR<C>;
@@ -36005,7 +36315,7 @@ type MapFn<I, O, C extends FinalizedMapConfig<OptRequired, MapCardinalityIllustr
36005
36315
  * which you can use. For instance, look at the `fnSignature`
36006
36316
  * property to get the _type_ signature of the map function.
36007
36317
  */
36008
- type Mapper<I = unknown, O = unknown, C extends FinalizedMapConfig<OptRequired, MapCardinalityIllustrated, OptRequired> = FinalizedMapConfig<OptRequired, MapCardinalityIllustrated, OptRequired>> = {
36318
+ type MapperOld<I = unknown, O = unknown, C extends FinalizedMapConfig<OptRequired, MapCardinalityIllustrated, OptRequired> = FinalizedMapConfig<OptRequired, MapCardinalityIllustrated, OptRequired>> = {
36009
36319
  input: MapIR<C>;
36010
36320
  output: MapOR<C>;
36011
36321
  cardinality: MapCard<C>;
@@ -36025,19 +36335,19 @@ type Mapper<I = unknown, O = unknown, C extends FinalizedMapConfig<OptRequired,
36025
36335
  *
36026
36336
  * Type utility which extracts the `I` type from a fully configured `Mapper`
36027
36337
  */
36028
- type MapInputFrom<T extends Mapper> = T extends Mapper<infer I> ? I : never;
36338
+ type MapInputFrom<T extends MapperOld> = T extends MapperOld<infer I> ? I : never;
36029
36339
  /**
36030
36340
  * **MapOutputFrom**
36031
36341
  *
36032
36342
  * Type utility which extracts the output [`O`] type from a fully configured `Mapper`
36033
36343
  */
36034
- type MapOutputFrom<T extends Mapper> = T extends Mapper<any, infer O> ? O : never;
36344
+ type MapOutputFrom<T extends MapperOld> = T extends MapperOld<any, infer O> ? O : never;
36035
36345
  /**
36036
36346
  * **MapCardinalityFrom**
36037
36347
  *
36038
36348
  * Type utility which extracts _cardinality_ of a `Mapper`'s inputs to outputs
36039
36349
  */
36040
- type MapCardinalityFrom<T extends Mapper> = T extends Mapper<any, any, infer C> ? C extends FinalizedMapConfig<OptRequired, infer Cardinality, OptRequired> ? Cardinality : never : never;
36350
+ type MapCardinalityFrom<T extends MapperOld> = T extends MapperOld<any, any, infer C> ? C extends FinalizedMapConfig<OptRequired, infer Cardinality, OptRequired> ? Cardinality : never : never;
36041
36351
 
36042
36352
  /**
36043
36353
  * **MaybeRef**`<T>`
@@ -36055,9 +36365,9 @@ type MapCardinalityFrom<T extends Mapper> = T extends Mapper<any, any, infer C>
36055
36365
  */
36056
36366
  type MaybeRef<T> = T | VueRef<T>;
36057
36367
 
36058
- type Process$7<TInput extends readonly {
36368
+ type Process$8<TInput extends readonly {
36059
36369
  [key: string]: unknown;
36060
- }[], TOutput extends Dictionary = EmptyObject> = [] extends TInput ? TOutput extends Record<string, unknown> ? ExpandRecursively<TOutput> : never : Process$7<AfterFirst<TInput>, First<TInput> extends keyof TOutput ? TOutput : TOutput & First<TInput>>;
36370
+ }[], TOutput extends Dictionary = EmptyObject> = [] extends TInput ? TOutput extends Record<string, unknown> ? ExpandRecursively<TOutput> : never : Process$8<AfterFirst<TInput>, First<TInput> extends keyof TOutput ? TOutput : TOutput & First<TInput>>;
36061
36371
  /**
36062
36372
  * **MergeKVs**`<TKVs>`
36063
36373
  *
@@ -36068,7 +36378,7 @@ type Process$7<TInput extends readonly {
36068
36378
  */
36069
36379
  type MergeKVs<TInput extends readonly {
36070
36380
  [key: string]: unknown;
36071
- }[]> = Process$7<TInput>;
36381
+ }[]> = Process$8<TInput>;
36072
36382
 
36073
36383
  /**
36074
36384
  * **MutableProps**`<T>`
@@ -36108,12 +36418,12 @@ type NonStringKeys<T extends AnyObject> = {
36108
36418
  */
36109
36419
  type OptionalProps<T extends object> = EmptyObject extends RemoveIndexKeys<Pick<T, OptionalKeys<T>>> ? RemoveIndexKeys<Pick<T, OptionalKeys<T>>> : never;
36110
36420
 
36111
- 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<PascalCase<First<TKeys>>, TObj[First<TKeys>]> & TResult : Record<First<TKeys>, TObj[First<TKeys>]> & TResult>;
36421
+ 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<PascalCase<First<TKeys>>, TObj[First<TKeys>]> & TResult : Record<First<TKeys>, TObj[First<TKeys>]> & TResult>;
36112
36422
  /**
36113
36423
  * Converts an object's keys to the **camelCase** equivalent
36114
36424
  * while keeping the values the same.
36115
36425
  */
36116
- type PascalKeys<T extends Dictionary> = MakeKeysOptional<Process$6<T, Keys<T>>, OptionalKeys<T> extends string ? UnionMutate<OptionalKeys<T>, "PascalCase"> extends string ? UnionMutate<OptionalKeys<T>, "PascalCase"> : "" : "">;
36426
+ type PascalKeys<T extends Dictionary> = MakeKeysOptional<Process$7<T, Keys<T>>, OptionalKeys<T> extends string ? UnionMutate<OptionalKeys<T>, "PascalCase"> extends string ? UnionMutate<OptionalKeys<T>, "PascalCase"> : "" : "">;
36117
36427
 
36118
36428
  type MyEqual<A, B> = (<X>() => X extends A ? 0 : 1) extends <X>() => X extends B ? 0 : 1 ? true : false;
36119
36429
  type isReadonly<T, K extends keyof T> = MyEqual<{
@@ -36188,7 +36498,7 @@ type RequiredProps<T extends AnyObject> = Pick<T, RequiredKeys<T>>;
36188
36498
  */
36189
36499
  type RequireProps<T extends EmptyObject, R extends keyof T> = ExpandRecursively<Required<Pick<T, R>> & T>;
36190
36500
 
36191
- type Process$5<TObj extends Dictionary, TComparator, TOp extends ComparatorOperation, TKeys extends readonly ObjectKey[], TResult extends Dictionary = EmptyObject> = [] extends TKeys ? ExpandDictionary<TResult> : Process$5<TObj, TComparator, TOp, AfterFirst<TKeys>, Compare$1<TObj[First<TKeys>], TOp, TComparator> extends true ? TResult & Record<First<TKeys>, TObj[First<TKeys>]> : TResult>;
36501
+ type Process$6<TObj extends Dictionary, TComparator, TOp extends ComparatorOperation, TKeys extends readonly ObjectKey[], TResult extends Dictionary = EmptyObject> = [] extends TKeys ? ExpandDictionary<TResult> : Process$6<TObj, TComparator, TOp, AfterFirst<TKeys>, Compare$1<TObj[First<TKeys>], TOp, TComparator> extends true ? TResult & Record<First<TKeys>, TObj[First<TKeys>]> : TResult>;
36192
36502
  /**
36193
36503
  * **RetainProps**`<TObj, TComparator, [TOp]>`
36194
36504
  *
@@ -36199,7 +36509,15 @@ type Process$5<TObj extends Dictionary, TComparator, TOp extends ComparatorOpera
36199
36509
  * "extends" but you can change the comparison operation to
36200
36510
  * `equals`, `startsWith`, `endsWith`, ...
36201
36511
  */
36202
- type RetainProps<TObj extends Dictionary, TComparator, TOp extends ComparatorOperation = "extends"> = Process$5<TObj, TComparator, TOp, Keys<TObj>>;
36512
+ type RetainProps<TObj extends Dictionary, TComparator, TOp extends ComparatorOperation = "extends"> = Process$6<TObj, TComparator, TOp, Keys<TObj>>;
36513
+
36514
+ /**
36515
+ * **SetKeysTo**`<TObj, TKeys, TValue>`
36516
+ *
36517
+ * Mutates the type of `TObj` to have all keys specified in `TKeys` to by
36518
+ * typed to the value of `TValue`.
36519
+ */
36520
+ type SetKeysTo<TObj extends AnyObject, TKeys extends readonly string[], TValue> = [] extends TKeys ? ExpandDictionary<TObj> : SetKeysTo<TObj & Record<First<TKeys>, TValue>, AfterFirst<TKeys>, TValue>;
36203
36521
 
36204
36522
  /**
36205
36523
  * **SharedKeys**`<A,B>`
@@ -36225,12 +36543,12 @@ type SharedKeys<A extends Record<ObjectKey, unknown> | object, B extends Record<
36225
36543
  */
36226
36544
  type SimplifyObject<T extends object> = ExpandRecursively<UnionToIntersection<ExpandRecursively<T>>>;
36227
36545
 
36228
- type Process$4<TObj extends Dictionary, TKeys extends readonly (ObjectKey & keyof TObj)[], TResult extends Dictionary = EmptyObject> = [] extends TKeys ? ExpandDictionary<TResult> : Process$4<TObj, AfterFirst<TKeys>, First<TKeys> extends string ? Record<SnakeCase<First<TKeys>>, TObj[First<TKeys>]> & TResult : Record<First<TKeys>, TObj[First<TKeys>]> & TResult>;
36546
+ type Process$5<TObj extends Dictionary, TKeys extends readonly (ObjectKey & keyof TObj)[], TResult extends Dictionary = EmptyObject> = [] extends TKeys ? ExpandDictionary<TResult> : Process$5<TObj, AfterFirst<TKeys>, First<TKeys> extends string ? Record<SnakeCase<First<TKeys>>, TObj[First<TKeys>]> & TResult : Record<First<TKeys>, TObj[First<TKeys>]> & TResult>;
36229
36547
  /**
36230
36548
  * Converts an object's keys to the **kebab-case** equivalent
36231
36549
  * while keeping the values the same.
36232
36550
  */
36233
- type SnakeKeys<T extends Dictionary> = MakeKeysOptional<Process$4<T, Keys<T>>, OptionalKeys<T> extends string ? UnionMutate<OptionalKeys<T>, "SnakeCase"> extends string ? UnionMutate<OptionalKeys<T>, "SnakeCase"> : "" : "">;
36551
+ type SnakeKeys<T extends Dictionary> = MakeKeysOptional<Process$5<T, Keys<T>>, OptionalKeys<T> extends string ? UnionMutate<OptionalKeys<T>, "SnakeCase"> extends string ? UnionMutate<OptionalKeys<T>, "SnakeCase"> : "" : "">;
36234
36552
 
36235
36553
  /**
36236
36554
  * **StringKeys**`<T>`
@@ -36250,7 +36568,7 @@ type StringKeys<T extends object> = {
36250
36568
  */
36251
36569
  type TakeProp<TTest, TProp extends PropertyKey, TElse = undefined> = TProp extends keyof TTest ? TTest[TProp] : TElse;
36252
36570
 
36253
- type Process$3<TObj extends AnyObject, K extends ObjectKey, V> = K extends keyof TObj ? Omit<TObj, K> & Record<K, V> : TObj & Record<K, V>;
36571
+ type Process$4<TObj extends AnyObject, K extends ObjectKey, V> = K extends keyof TObj ? Omit<TObj, K> & Record<K, V> : TObj & Record<K, V>;
36254
36572
  /**
36255
36573
  * **UpsertKeyValue**`<TObj,TKey,TVal>`
36256
36574
  *
@@ -36259,7 +36577,7 @@ type Process$3<TObj extends AnyObject, K extends ObjectKey, V> = K extends keyof
36259
36577
  *
36260
36578
  * **Related:** `AddKeyValue`
36261
36579
  */
36262
- type UpsertKeyValue<TObj extends AnyObject, K extends ObjectKey, V> = ExpandRecursively<Process$3<TObj, K, V>>;
36580
+ type UpsertKeyValue<TObj extends AnyObject, K extends ObjectKey, V> = ExpandRecursively<Process$4<TObj, K, V>>;
36263
36581
 
36264
36582
  /**
36265
36583
  * **ValidKey**<TContainer>
@@ -36271,7 +36589,7 @@ type UpsertKeyValue<TObj extends AnyObject, K extends ObjectKey, V> = ExpandRecu
36271
36589
  */
36272
36590
  type ValidKey<TContainer extends Container> = TupleToUnion<AsArray<Keys<TContainer>>>;
36273
36591
 
36274
- type Process$2<TKeys extends readonly ObjectKey[], TObj extends Record<ObjectKey, unknown>, TResult extends readonly unknown[] = []> = [] extends TKeys ? TResult : Process$2<AfterFirst<TKeys>, TObj, [
36592
+ type Process$3<TKeys extends readonly ObjectKey[], TObj extends Record<ObjectKey, unknown>, TResult extends readonly unknown[] = []> = [] extends TKeys ? TResult : Process$3<AfterFirst<TKeys>, TObj, [
36275
36593
  ...TResult,
36276
36594
  First<TKeys> extends keyof TObj ? TObj[First<TKeys>] : never
36277
36595
  ]>;
@@ -36283,7 +36601,28 @@ type Process$2<TKeys extends readonly ObjectKey[], TObj extends Record<ObjectKey
36283
36601
  * - for **tuples** this is just a _proxy_ of the type
36284
36602
  * - for _wide_ types like `string[]`
36285
36603
  */
36286
- type Values<T extends Container> = T extends Tuple ? T : T extends Dictionary ? Process$2<Keys<T> extends readonly ObjectKey[] ? Keys<T> : never, T> : T extends TypedFunction ? [T] : [];
36604
+ type Values<T extends Container> = T extends Tuple ? T : T extends Dictionary ? Process$3<Keys<T> extends readonly ObjectKey[] ? Keys<T> : never, T> : T extends TypedFunction ? [T] : [];
36605
+
36606
+ type MakeIntoUnion<K extends PropertyKey | readonly PropertyKey[]> = K extends readonly PropertyKey[] ? TupleToUnion<K> : K;
36607
+ type MakeNumericIndex<T> = T;
36608
+ /**
36609
+ * **WithKeys**`<T,K>`
36610
+ *
36611
+ * This type utility will ensure that the type `T` will _retain_ the key/value
36612
+ * pairs which extend `K`.
36613
+ *
36614
+ * It is very similar to **Pick** but rather `K` being restricted to
36615
+ * being a string union, wth **WithKeys** you can use the union type
36616
+ * or a readonly array of strings.
36617
+ *
36618
+ * ```ts
36619
+ * type Test = { foo: 1, bar: number, baz: string };
36620
+ * // { foo: 1, bar: number }
36621
+ * type T1 = WithKeys<Test, "foo" | "bar">; // Pick syntax
36622
+ * type T2 = WithKeys<Test, ["foo", "bar"]>;
36623
+ * ```
36624
+ */
36625
+ type WithKeys<T extends AnyObject | Tuple, K extends PropertyKey | readonly PropertyKey[]> = ExpandRecursively<UnionToIntersection<MakeIntoUnion<K> extends keyof T ? T extends Tuple ? MakeNumericIndex<Pick<T, MakeIntoUnion<K>>> : Pick<T, MakeIntoUnion<K>> : never>>;
36287
36626
 
36288
36627
  /**
36289
36628
  * **WithNumericKeys**`<T>`
@@ -36292,6 +36631,16 @@ type Values<T extends Container> = T extends Tuple ? T : T extends Dictionary ?
36292
36631
  */
36293
36632
  type WithNumericKeys<T extends object> = Omit<T, NonNumericKeys<T>>;
36294
36633
 
36634
+ type Process$2<TObj extends Dictionary, TKeys extends ObjectKey> = [] extends TKeys ? TObj : Omit<TObj, TKeys>;
36635
+ /**
36636
+ * **WithoutKeys**`<TObj, TKeys>`
36637
+ *
36638
+ * Removes the keys in `TKeys` from an object `TObj`. This is
36639
+ * functionally equivalent to the `Omit<T,U>` built-in but rather than
36640
+ * taking a union type it takes an array of keys.
36641
+ */
36642
+ type WithoutKeys<TObj extends Dictionary, TKeys extends ObjectKey | readonly ObjectKey[]> = TKeys extends readonly ObjectKey[] ? Process$2<TObj, TupleToUnion<TKeys>> : ExpandDictionary<Process$2<TObj, TKeys extends readonly ObjectKey[] ? TupleToUnion<TKeys> : TKeys>>;
36643
+
36295
36644
  /**
36296
36645
  * **WithoutValue**
36297
36646
  *
@@ -36938,4 +37287,4 @@ type LastOfEach<T extends readonly unknown[][]> = {
36938
37287
  */
36939
37288
  type SecondOfEach<T extends unknown[][]> = T[number][1] extends T[number][number] ? T[number][1] : never;
36940
37289
 
36941
- export { ACCELERATION_METRICS_LOOKUP$2 as ACCELERATION_METRICS_LOOKUP, ALPHA_CHARS, AMAZON_BOOKS, AMAZON_DNS$2 as AMAZON_DNS, APPLE_DNS$2 as APPLE_DNS, AREA_METRICS_LOOKUP$2 as AREA_METRICS_LOOKUP, AUSTRALIAN_NEWS$2 as AUSTRALIAN_NEWS, type Abs, type AbsMaybe, type Acceleration, type AccelerationMetrics, type AccelerationUom, type Add, type AddKeyValue, type AddUrlPathSegment, type AfterFirst, type AfterFirstChar, type AllCaps, type AllExtend, type AllLiteral, type AllNumericLiterals, type AllStringLiterals, type AllowNonTupleWhenSingular, type Alpha, type AlphaChar, type AlphaNumeric, type AlphaNumericChar, type AmPm, type AmPmCase, type AmazonUrl, type And, type AnyArray, type AnyFunction, type AnyObject, type AnyQueryParams, type Api, type ApiCallback, type ApiConfig, type ApiEscape, type ApiHandler, type ApiOptions, type ApiReturn, type ApiState, type ApiStateInitializer, type ApiSurface, type AppendRight, type AppleUrl, type AreSameLength, type AreSameType, type Area, type AreaMetrics, type AreaUom, type AriaDocStructureRoles, type AriaLandmarkRoles, type AriaLiveRegionRoles, type AriaRole, type AriaWidgetRoles, type AriaWindowRoles, type ArrayElementType, type ArrayTypeDefn, type As, type AsApi, type AsArray, type AsBoolean, type AsChoice, type AsClassSelector, type AsContainer, type AsDefined, type AsDictionary, type AsDoneFn, type AsErr, type AsErrKind, type AsError, type AsError__Meta, type AsEscapeFunction, type AsFinalizedConfig, type AsFnMeta, type AsFunction, type AsIndexOf, type AsIp6Prefix, type AsLeft, type AsLeftRight, type AsList, type AsLiteralFn, type AsNarrowingFn, type AsNegativeNumber, type AsNonNull, type AsNumber, type AsNumberWhenPossible, type AsNumericArray, type AsObject, type AsObjectKey, type AsObjectKeys, type AsOptionalParamFn, type AsPropertyKey, type AsRecord, type AsRef, type AsRight, type AsSomething, type AsString, type AsStringLiteral, type AsStringUnion, type AsToken, type AsTokenOpt, type AsTuple, type AsType, type AsUnion, type AsVueComputedRef, type AsyncFunction, type AustralianNewsCompanies, type AustralianNewsUrls, type AvailableConverters, type Awaited$1 as Awaited, BELGIUM_NEWS$2 as BELGIUM_NEWS, BEST_BUY_DNS$2 as BEST_BUY_DNS, BLOOD_MARKERS_LOOKUP, type BareCssSelector, type BaseTypeToken, type BeforeLast, type BelgianNewsCompanies, type BelgianNewsUrls, type BespokeLiteral, type BespokeUnion, type BestBuyUrl, type BooleanLike, type Box, type BoxValue, type BoxedFnParams, type Bracket, type 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 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 ConfiguredMap, type Consonant, type Consonants, type Constant$3 as Constant, type Constructor, type Container, type ContainerBlockKey, type ContainerKeyGuarantee, type Contains, type ContainsAll, type Conversion, type ConversionTuple, type ConvertSet, type ConvertTypeOf, type ConvertWideTokenNames, type ConverterCoverage, type ConverterDefn, type CostCoUrl, type CostcoUrl, type CountryPhoneNumber, type Cr, type CrThenIndent, type CreateChoice, type CreateDictHash, type CreateDictShape, type CreateKV, type CreateLookup, type CssAbsolutionPositioningProperties, type CssAlignContent, type CssAlignItems, type CssAlignProperties, type CssAlignSelf, type CssAnimation, type CssAnimationComposition, type CssAnimationDelay, type CssAnimationDirection, type CssAnimationDuration, type CssAnimationFillMode, type CssAnimationIterationCount, type CssAnimationPlayState, type CssAnimationProperties, type CssAnimationTimingFunction, type CssAppearance, type CssAspectRatio, type CssBackdropFilter, type CssBackgroundProperties, type CssBorderCollapse, type CssBorderImageRepeat, type CssBorderImageSource, type CssBorderInlineSizing, type CssBorderProperties, type CssBorderStyle, type CssBorderWidth, type CssBoxAlign, type CssBoxDecorationBreak, type CssBoxProperties, type CssBoxShadow, type CssBoxSizing, type CssCalc, type CssClamp, type CssClassSelector, type CssColor, type CssColorFn, type CssColorLight, type CssColorMix, type CssColorMixLight, type CssColorModel, type CssColorSpace, type CssColorSpacePrimary, type CssContent, type CssCursor, type CssDefinition, type CssDisplay, type CssDisplayStatePseudoClasses, type CssFlex, type CssFlexBasis, type CssFlexDirection, type CssFlexFlow, type CssFlexGrow, type CssFlexShrink, type CssFloat, type CssFontFamily, type CssFontFeatureSetting, type CssFontKerning, type CssFontLanguageOverride, type CssFontPalette, type CssFontStyle, type CssFontSynthesis, type CssFontWeight, type CssFontWidth, type CssFunctionalPseudoClass, type CssGap, type CssGlobal, type CssHangingPunctuation, type CssHexColor, type CssHsb, type CssHsl, type CssIdSelector, type CssImageOrientation, type CssImageRendering, type CssImageResolution, type CssInputPseudoClasses, type CssJustifyContent, type CssJustifyItems, type CssJustifyProperties, type CssJustifySelf, type CssKeyframeCallback, type CssKeyframeTimestamp, type CssKeyframeTimestampSuggest, type CssLetterSpacing, type CssLinguisticPseudoClasses, type CssListStyle, type CssLocationPseudoClasses, type CssMargin, type CssMarginBlock, type CssMarginBlockEnd, type CssMarginBlockStart, type CssMarginBottom, type CssMarginInline, type CssMarginInlineEnd, type CssMarginInlineStart, type CssMarginLeft, type CssMarginProperties, type CssMarginRight, type CssMarginTop, type CssMixBlendMode, type CssNamedColors, type CssNamedSizes, type CssObjectFit, type CssObjectPosition, type CssOffsetDistance, type CssOffsetPath, type CssOffsetPosition, type CssOffsetProperties, type CssOkLch, type CssOpacity, type CssOutline, type CssOutlineColor, type CssOutlineOffset, type CssOutlineProperties, type CssOutlineStyle, type CssOutlineWidth, type CssOverflowAnchor, type CssOverflowBlock, type CssOverflowClipMargin, type CssOverflowInline, type CssOverflowProperties, type CssOverflowX, type CssOverflowY, type CssPadding, type CssPaddingBlock, type CssPaddingBlockEnd, type CssPaddingBlockStart, type CssPaddingBottom, type CssPaddingInline, type CssPaddingInlineEnd, type CssPaddingInlineStart, type CssPaddingLeft, type CssPaddingProperties, type CssPaddingRight, type CssPaddingTop, type CssPerspectiveOrigin, type CssPlaceContent, type CssPlaceItems, type CssPlaceProperties, type CssPlaceSelf, type CssPointerEvent, type CssPosition, type CssProperty, type CssPseudoClass, type CssPseudoClassDefn, type CssResourceStatePseudoClasses, type CssRgb, type CssRgba, type CssRotation, type CssRound, type CssSelector, type CssSelectorOptions, type CssSizing, type CssSizingFunction, type CssSizingLight, type CssStroke, type CssStrokeDasharray, type CssStrokeProperties, type CssTagSelector, type CssTextAlign, type CssTextDecorationLine, type CssTextDecorationStyle, type CssTextIndent, type CssTextJustify, type CssTextOrientation, type CssTextOverflow, type CssTextPosition, type CssTextProperties, type CssTextRendering, type CssTextTransform, type CssTextWrap, type CssTextWrapMode, type CssTextWrapStyle, type CssTimePseudoClasses, type CssTiming, type CssTransform, type CssTransformBox, type CssTransformOrigin, type CssTransformProperties, type CssTransformStyle, type CssTranslate, type CssTranslateFn, type CssTreePseudoClasses, type CssUserActionPseudoClasses, type CssVar, type CssVarWithFallback, type CssWhiteSpace, type CssWhiteSpaceCollapse, type CssWordBreak, type CssWritingMode, type CsvFormat, type CsvToJsonTuple, type CsvToStrUnion, type CsvToTuple, type CsvToTupleStr, type CsvToUnion, type Current, type CurrentMetrics, type CurrentUom, type CvsUrl, DANISH_NEWS$2 as DANISH_NEWS, DEFAULT_MANY_TO_ONE_MAPPING, DEFAULT_ONE_TO_MANY_MAPPING, DEFAULT_ONE_TO_ONE_MAPPING, DELL_DNS$2 as DELL_DNS, DISTANCE_METRICS_LOOKUP$2 as DISTANCE_METRICS_LOOKUP, DUTCH_NEWS$2 as DUTCH_NEWS, type DanishNewsCompanies, type DanishNewsUrls, type DashToSnake, type DashUppercase, type Date$2 as Date, type DateSeparator, type DateThenMonth, type DateThenMonthThenYear, type DateTime, type DateTimeMinutes, type DateTimeSeconds, type DayOfWeek, type DayofWeekFull, type DecomposeMapConfig, type Decrement, type Default, type DefaultManyToOneMapping, type DefaultOneToManyMapping, type DefaultOneToOneMapping, type DefineObject, type DefineObjectApi, type DefineStatelessApi, type Defined, type DellUrl, type Delta, type DeployConfig, type DialCountryCode, type Dict, type DictArray, type DictArrayFilterCallback, type DictArrayKv, type DictChangeValue, type DictFromKv, type DictKvTuple, type Dictionary, type DictionaryTypeDefn, type Digit, type DigitNonZero, type Digital, type DigitalLiteral, type Digitize, type Distance, type DistanceMetrics, type DistanceUom, type DnsName, type DockerCompose, type DockerDependsOn, type DockerService, type DoesExtend, type DoesNotExtend, type DomainName, type DoneFnTuple, type DotPathFor, type DoubleQuote, type DropChars, type DutchNewsCompanies, type DutchNewsUrls, EBAY_DNS$2 as EBAY_DNS, ENERGY_METRICS_LOOKUP$2 as ENERGY_METRICS_LOOKUP, ETSY_DNS$2 as ETSY_DNS, type EbayUrl, type ElementOf, type Email, type EmptyObject, type EmptyString, type EmptyStringOr, type EndingWithTypeGuard, type EndsWith, type Energy, type EnergyMetrics, type EnergyUom, type EnsureKeys, type EnsureLeading, type EnsureLeadingEvery, type EnsureSurround, type EnsureTrailing, type EqualTo, type Equals, type Err, type ErrFrom, type ErrInput, type ErrorCondition, type ErrorConditionHandler, type ErrorConditionShape, type EscapeFunction, type EsotericHtmlElement, type EtsyUrl, type Exif, type ExifAttributionInfo, type ExifCameraInfo, ExifCompression, ExifContrast, type ExifDateTimeInfo, ExifEmbedPolicy, type ExifExtraneous, ExifFlashValues, ExifGainControl, type ExifGps, ExifLightSource, type ExifPhotoContext, ExifPreviewColorSpace, ExifSaturation, ExifSceneCaptureType, ExifSharpness, ExifSubjectDistance, type ExpandDictionary, type ExpandRecursively, type ExpandTuple, type ExpandUnion, type ExplicitlyEmptyObject, type Extends, type ExtendsAll, type ExtendsNone, type ExtendsSome, FALSY_TYPE_KINDS$1 as FALSY_TYPE_KINDS, FALSY_VALUES, FRENCH_NEWS$2 as FRENCH_NEWS, FREQUENCY_METRICS_LOOKUP$2 as FREQUENCY_METRICS_LOOKUP, type Fail, type FalsyValue, type FifoQueue, type Filter, type FilterByProp, type FilterLiterals, type FilterProps, type FilterWideTypes, type FinalizedMapConfig, type Find, type FindFirstIndex, type FindIndexMetaOfString, type FindIndexMetaOfTuple, type FindIndexes, type FindIndexesWithMeta, type FindLastIndex, type Finder, type First, type FirstChar, type FirstKey, type FirstKeyValue, type FirstOfEach, type FirstString, type FixedLengthArray, type Flatten, type FlattenUnion, type FluentApi, type FluentFn, type FluentState, type FnAllowingProps, type FnArgsDefn, type FnDefn, type FnFrom, type FnMeta, type FnParam, type FnParams, type FnPropertiesDefn, type FnProps, type FnReturnTypeDefn, type FnWithDescription, type FnWithProps, type FontProperties, type FrenchNewsCompanies, type FrenchNewsUrls, type Frequency, type FrequencyMetrics, type FrequencyUom, type FromDefineObject, type FromDefn, type FromDictArray, type FromLiteralTokens, type FromMaybeRef, 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 GetEach, type GetEachOptions, type GetEscapeFunction, type GetInference, type GetOptions, type GetPhoneCountryCode, type GetPhoneNumberType, type GetTypeOf, type GetUrlPath, type GetUrlPort, type GetUrlProtocol, type GetUrlProtocolPrefix, type GetUrlQueryParams, type GetUrlSource, type GetYouTubePageType, type GitRef, type GithubActionsUrl, type GithubInsightPageType, type GithubInsightUrl, type GithubOrgUrl, type GithubRepoBranchesUrl, type GithubRepoDiscussionUrl, type GithubRepoDiscussionsUrl, type GithubRepoIssueUrl, type GithubRepoIssuesListUrl, type GithubRepoProjectUrl, type GithubRepoProjectsUrl, type GithubRepoPullRequestUrl, type GithubRepoPullRequestsUrl, type GithubRepoReleaseTagUrl, type GithubRepoReleasesUrl, type GithubRepoTagsUrl, type GithubRepoUrl, type GithubUrl, HASH_TABLE_ALPHA_LOWER, HASH_TABLE_ALPHA_UPPER, HASH_TABLE_CHAR, HASH_TABLE_DIGIT, HASH_TABLE_OTHER, HASH_TABLE_SPECIAL, HASH_TABLE_WIDE, HM_DNS$2 as HM_DNS, HOME_DEPOT_DNS$2 as HOME_DEPOT_DNS, type HandMUrl, type Handle, type HandleDoneFn, type HasArray, type HasCharacters, type HasEscapeFunction, type HasIndex, type HasIpAddress, type HasNetworkProtocolReference, type HasOtherCharacters, type HasParameters, type HasPhoneCountryCode, type HasProp, type HasQueryParameter, type HasRequiredProps, type HasSameKeys, type HasSameValues, type HasUnionType, type HasUppercase, type HasUrlPath, type HasUrlSource, type HasWideValues, type HaveSameNumericSign, type Healthcheck, type HexColor, type Hexadecimal, type HexadecimalChar, type HomeDepotUrl, type HoursMinutes, type HoursMinutes12, type HoursMinutesSeconds, type HoursMinutesSeconds12, type HoursMinutesSecondsMilliseconds, type HoursMinutesSecondsMilliseconds12, type HtmlBodyElement, type HtmlElement, type HtmlFrameworkElement, type HtmlFunctionalElement, type HtmlHeaderElement, type HtmlInputElement, type HtmlListElement, type HtmlMediaElement, type HtmlStructuralElement, type HtmlSymantecElement, type HtmlTableElement, IKEA_DNS$2 as IKEA_DNS, IMAGE_FORMAT_LOOKUP$1 as IMAGE_FORMAT_LOOKUP, INDIAN_NEWS$2 as INDIAN_NEWS, type IP6Multicast, type IP6Unicast, IPv4, IPv6$1 as IPv6, ISO3166_1$2 as ISO3166_1, ITALIAN_NEWS$2 as ITALIAN_NEWS, type IdentityFn, type IdentityFunction, type If, type IfAllExtend, type IfAllLiteral, type IfEqual, type IfEquals, type IfErrorCondition, type IfLeft, type IfLength, type IfLiteralKind, type IfNever, type IfUnset, type IfUnsetOrUndefined, type Iff, type IkeaUrl, type ImgFormat, type ImgFormatWeb, type Immutable, type Increment, type Indent$1 as Indent, type Indent2, type Indent4, type IndentSpaces, type IndentTab, type IndexOf, type Indexable, type IndexableObject, type IndianNewsCompanies, type IndianNewsUrls, type InlineSvg, type Integer, type IntegerBrand, type InternationalPhoneNumber, type Intersect$1 as Intersect, type IntersectAll, type IntersectWithAll, type IntersectingKeys, type Intersection, type InvertNumericSign, type Ip4Address, type Ip4Netmask, type Ip4Netmask16, type Ip4Netmask24, type Ip4Netmask32, type Ip4Netmask8, type Ip4NetmaskSuggestion, type Ip4Octet, type Ip6Address, type Ip6AddressFull, type Ip6AddressLoose, type Ip6Group, type Ip6GroupExpansion, type Ip6Loopback, type Ip6Subnet, type Ip6SubnetPrefix, type IsAllCaps, type IsAllLowercase, type IsArray, type IsBoolean, type IsBooleanLiteral, type IsCapitalized, type IsComputedRef, type IsContainer, type IsCssHexadecimal, type IsDefined, type IsDictionaryDefinition, type IsDomainName, type IsDotPath, type IsEmptyContainer, type IsEmptyObject, type IsEmptyString, type IsEqual, type IsErr, type IsErrorCondition, type IsEscapeFunction, type IsFalse, type IsFalsy, type IsFloat, type IsFnWithParams, type IsFunction, type IsGreaterThan, type IsGreaterThanOrEqual, type IsHexadecimal, type IsInteger, type IsIp4Address, type IsIp4Octet, type IsIp6Address, type IsIp6HexGroup, type IsIpAddress, type IsIso8601DateTime, type IsIsoDate, type IsIsoExplicitDate, type IsIsoImplicitDate, type IsIsoTime, type IsJsDate, type IsLength, type IsLessThan, type IsLessThanOrEqual, type IsLiteral, type IsLiteralFn, type IsLiteralKind, type IsLiteralUnion, type IsLowerAlpha, type IsLuxonDateTime, type IsMoment, type IsNarrowingFn, type IsNegativeNumber, type IsNever, type IsNonEmptyContainer, type IsNonEmptyObject, type IsNonLiteralUnion, type IsNotEqual, type IsNothing, type IsNull, type IsNumber, type IsNumberLike, type IsNumericLiteral, type IsObject, type IsObjectLiteral, type IsOk, type IsOptionalLiteral, type IsOptionalScalar, type IsPhoneNumber, type IsPositiveNumber, type IsReadonlyArray, type IsReadonlyObject, type IsResult, type IsScalar, type IsSingleChar, type IsSingleSided, type IsSingularNoun, type IsStrictPromise, type IsString, type IsStringLiteral, type IsSymbol, type IsThenable, type IsTrue, type IsTruthy, type IsTuple, type IsUndefined, type IsUnion, type IsUnionArray, type IsUnset, type IsUrl, type IsValidDotPath, type IsValidIndex, type IsVueRef, type IsWideContainer, type IsWideScalar, type IsWideType, type IsWideUnion, type Iso3166Alpha2Lookup, type Iso3166Alpha3Lookup, type Iso3166CodeLookup, type Iso3166CountryLookup, type Iso3166_1_Alpha2, type Iso3166_1_Alpha3, type Iso3166_1_CountryCode, type Iso3166_1_CountryName, type Iso3166_1_Lookup, type Iso3166_1_Token, type Iso8601, type Iso8601Date, type Iso8601DateTime, type Iso8601Time, type Iso8601Year, type ItalianNewsCompanies, type ItalianNewsUrls, JAPANESE_NEWS$2 as JAPANESE_NEWS, type JapaneseNewsCompanies, type JapaneseNewsUrls, type Join, type Joiner, type JsonValue, type JsonValues, type JustFunction, KROGER_DNS$2 as KROGER_DNS, type KebabCase, type KebabKeys, type KeyOf, type KeyValue, type KeyframeApi, type Keys, type KeysEqualValue, type KeysNotEqualValue, type KeysWithValue, type KeysWithoutValue, type KindFrom, type KlassMeta, type KrogerUrl, type KvFn, type KvFnDefn, type KvFrom, type KvTuple, LITERAL_TYPE_KINDS$1 as LITERAL_TYPE_KINDS, LOWER_ALPHA_CHARS$2 as LOWER_ALPHA_CHARS, LOWES_DNS$2 as LOWES_DNS, LUMINOSITY_METRICS_LOOKUP$2 as LUMINOSITY_METRICS_LOOKUP, type Last, type LastChar, type LastInUnion$1 as LastInUnion, type LastOfEach, type LeadingNonAlpha, type Left, type LeftContains, type LeftDoubleMark, type LeftEquals, type LeftExtends, type LeftHeavyDoubleTurned, type LeftHeavySingleTurned, type LeftIncludes, type LeftLowDoublePrime, type LeftReversedDoublePrime, type LeftRight, type LeftRight__Operations, type LeftSingleMark, type LeftWhitespace, type Length, type LessThan, type LessThanOrEqual$1 as LessThanOrEqual, type LifoQueue, type LikeRegExp, type List, type LiteralFn, type LocalPhoneNumber, type 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, MONTH_ABBR$1 as MONTH_ABBR, MONTH_NAME$1 as MONTH_NAME, type MacysUrl, type MakeKeysOptional, type MakeKeysRequired, type MakePropsMutable, type ManyToMany, type ManyToOne, type ManyToZero, type MapCard, MapCardinality, type MapCardinalityFrom, type MapCardinalityIllustrated, type MapConfig, type MapCoverage, type MapError, type MapFn, type MapFnInput, type MapFnOutput, type MapIR, type MapInput, type MapInputFrom, type MapKeyDefn, type MapOR, type MapOutput, type MapOutputFrom, type MapTo, type MapValueDefn, type Mapper, type MapperApi, type Marked$5 as Marked, type Mass, type MassMetrics, type MassUom, type MaxLength, type MaybeError, type MaybeRef, type Merge, type MergeKVs, type MergeObjects, type MergeScalars, type MergeTuples, type Metric, type MetricCategory, type MexicanNewsCompanies, type MexicanNewsUrls, type MilitaryHours, type MilitaryTime, type MilitaryTimeOptions, type Milliseconds, type Minutes, type MomentJs, type MonthAbbr, type MonthAbbrThenDate, type MonthAbbrThenDateAndYear, type MonthDay, type MonthName, type MonthNumeric, type MonthPostfix, type MonthThenDate, type MonthThenDateThenYear, type MonthThenDate_Simple, type MultiChoiceCallback, type MultipleChoice, type Mutable, type MutableProps, type MutablePropsExclusive, NARROW_CONTAINER_TYPE_KINDS$1 as NARROW_CONTAINER_TYPE_KINDS, NETWORK_PROTOCOL_LOOKUP$2 as NETWORK_PROTOCOL_LOOKUP, NIKE_DNS$2 as NIKE_DNS, NON_ZERO_NUMERIC_CHAR$2 as NON_ZERO_NUMERIC_CHAR, NORWEGIAN_NEWS$2 as NORWEGIAN_NEWS, NOT_APPLICABLE$1 as NOT_APPLICABLE, NOT_DEFINED$1 as NOT_DEFINED, NO_DEFAULT_VALUE$2 as NO_DEFAULT_VALUE, NUMERIC_CHAR$2 as NUMERIC_CHAR, NUMERIC_DIGIT$1 as NUMERIC_DIGIT, type NamedColor, type NamedColorMinimal, type NamedColor_Blue, type NamedColor_Brown, type NamedColor_Cyan, type NamedColor_Gray, type NamedColor_Green, type NamedColor_Orange, type NamedColor_Pink, type NamedColor_Purple, type NamedColor_Red, type NamedColor_White, type NamedColor_Yellow, type NamingConvention, type Narrow$1 as Narrow, type NarrowDictProps, type NarrowObject, type Narrowable, type NarrowableDefined, type NarrowableScalar, type NarrowingFn, type NarrowlyContains, type NegDelta, type Negative, type 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 ObjectKey, 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 OptionalParamFn, type OptionalProps, type OptionalSimpleScalarTokens, type OptionalSpace, type Or, PHONE_COUNTRY_CODES$1 as PHONE_COUNTRY_CODES, PHONE_FORMAT$1 as PHONE_FORMAT, PLURAL_EXCEPTIONS$2 as PLURAL_EXCEPTIONS, PLURAL_EXCEPTIONS_OLD, POWER_METRICS_LOOKUP$2 as POWER_METRICS_LOOKUP, PRESSURE_METRICS_LOOKUP$2 as PRESSURE_METRICS_LOOKUP, PROXMOX_CT_STATE, type 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 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 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, 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 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 Some, type SomeEqual, type SomeExtend, type Something, type SouthKoreanNewsCompanies, type SouthKoreanNewsUrls, type SpanishNewsCompanies, type SpanishNewsUrls, type SpecialChar, type Speed, type SpeedMetrics, type SpeedUom, type Split, type StackFrame, type StackTrace, type StandardMark, type StartingWithTypeGuard, type StartsWith, type StrLen, type StringComparatorOperation, type StringDelimiter, type StringKeys, type StringLength, type StringLiteralFromTuple, type 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 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 TypeFromDefineObject, type TypeGuard, type TypeHasDefaultValue, type TypeHasUnderlying, type TypeHasValidations, type TypeIsRequired, type TypeKind, type TypeKindContainer, type TypeKindContainerNarrow, type TypeKindContainerWide, type TypeKindFalsy, type TypeKindLiteral, type TypeKindWide, type TypeOf, type TypeOfExtended, type TypeOfTypeGuard, type TypeOptions, type TypeRequired, type TypeStrength, type TypeSubtype, type TypeToken, type TypeTokenAtomics, type TypeTokenContainers, type TypeTokenDelimiter, type TypeTokenFunctions, type TypeTokenKind, type TypeTokenLookup, type TypeTokenSets, type TypeTokenSingletons, type TypeTokenStart, type TypeTokenStop, type TypeToken__Boolean, type TypeToken__False, type TypeToken__Fn, type TypeToken__FnSet, type TypeToken__Gen, type TypeToken__Never, type TypeToken__Null, type TypeToken__Number, type TypeToken__NumberSet, type TypeToken__Rec, type TypeToken__String, type TypeToken__StringSet, type TypeToken__True, type TypeToken__Undefined, type TypeToken__UnionSet, type TypeToken__Unknown, type TypeTuple, type TypeUnderlying, type TypedFunction, type TzHourOffset, UK_NEWS$2 as UK_NEWS, UPPER_ALPHA_CHARS$2 as UPPER_ALPHA_CHARS, US_NEWS$2 as US_NEWS, US_STATE_LOOKUP$2 as US_STATE_LOOKUP, US_STATE_LOOKUP_PROVINCES$2 as US_STATE_LOOKUP_PROVINCES, US_STATE_LOOKUP_STRICT, type UkNewsCompanies, type UkNewsUrls, type Unbox, type UndefinedArrayIsUnknown, type UnderlyingType, type UnionArrayToTuple, type UnionClosure, type UnionElDefn, type UnionFilter, type UnionFromProp, type UnionHasArray, type UnionMutate, type UnionMutationOp, type UnionRetain, type UnionShift, type UnionToIntersection, type UnionToTuple$1 as UnionToTuple, type UnionWithAll, type Unique, type UniqueKeys, type UniqueKeysUnion, type UniqueKv, type UnitType, type Unset, type Uom, type UpperAlphaChar, type UpsertKeyValue, type Uri, type UrlBuilder, type UrlMeta, type UrlOptions, type UrlPath, type UrlPort, type UrlQueryParameters, type UrlsFrom, type UsNewsCompanies, type UsNewsUrls, type UsStateAbbrev, type UsStateName, VOLTAGE_METRICS_LOOKUP$2 as VOLTAGE_METRICS_LOOKUP, VOLUME_METRICS_LOOKUP$2 as VOLUME_METRICS_LOOKUP, type ValidKey, type Validate, type ValidationFunction, type ValueAtDotPath, type ValueCallback, type ValueOrReturnValue, type Values, type VariableChar, type Voltage, type VoltageMetrics, type VoltageUom, type Volume, type 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, choices, createConstant, createConverter, createCssKeyframe, createCssSelector, createErrorCondition, createFifoQueue, createFixedLengthArray, createFnWithProps, createFnWithPropsExplicit, createLifoQueue, createTypeToken, cssColor, csv, defineCss, defineObj, defineObject, defineTuple, endsWith, ensureLeading, ensureSurround, ensureTrailing, entries, errCondition, filter, find, fnMeta, fromDefineObject, get, getDaysBetween, getEach, getPhoneCountryCode, getTailwindModifiers, getToday, getTokenKind, getTomorrow, getTypeSubtype, getUrlPath, getUrlPort, getUrlProtocol, getUrlQueryParams, getUrlSource, getWeekNumber, getYesterday, getYouTubePageType, handleDoneFn, hasDefaultValue, hasIndexOf, hasKeys, hasUrlPort, hasUrlQueryParameter, hasWhiteSpace, idLiteral, idTypeGuard, identity, ifArray, ifArrayPartial, ifBoolean, ifChar, ifContainer, ifDefined, ifFalse, ifFunction, ifHasKey, ifLength, ifLowercaseChar, ifNotNull, ifNull, ifNumber, ifObject, ifSameType, ifScalar, ifString, ifTrue, ifUndefined, ifUppercaseChar, indexOf, infer, intersect, intersection, ip6GroupExpansion, ip6Prefix, isAccelerationMetric, isAccelerationUom, isAlpha, isAmazonUrl, 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, isCssAspectRatio, isCurrentMetric, isCurrentUom, isCvsUrl, isDanishNewsUrl, isDate, isDefineObject, isDefined, isDellUrl, isDistanceMetric, isDistanceUom, isDomainName, isDoneFn, isDutchNewsUrl, isEbayUrl, isEmail, isEnergyMetric, isEnergyUom, isEqual, isErrorCondition, isEscapeFunction, isEtsyUrl, isFalse, isFalsy, isFnBasedKind, isFnBasedToken, isFnWithParams, isFrenchNewsUrl, isFrequencyMetric, isFrequencyUom, isFunction, isGermanNewsUrl, isGithubIssueUrl, isGithubIssuesListUrl, isGithubOrgUrl, isGithubProjectUrl, isGithubProjectsListUrl, isGithubReleaseTagUrl, isGithubReleasesListUrl, isGithubRepoReleaseTagUrl, isGithubRepoReleasesUrl, isGithubRepoUrl, isGithubUrl, isHexadecimal, isHmUrl, isHomeDepotUrl, isHtmlElement, isIkeaUrl, isIndexable, isIndianNewsUrl, isInlineSvg, isIp4Address, isIp6Address, isIpAddress, isIso3166Alpha2, isIso3166Alpha3, isIso3166CountryCode, isIso3166CountryName, isIsoDate, isIsoDateTime, isIsoExplicitDate, isIsoExplicitTime, isIsoImplicitDate, isIsoImplicitTime, isIsoTime, isIsoYear, isItalianNewsUrl, isJapaneseNewsUrl, isKrogersUrl, isLeapYear, isLength, isLikeRegExp, isLowesUrl, isLuminosityMetric, isLuminosityUom, isLuxonDateTime, isMacysUrl, isMapToken, isMassMetric, isMassUom, isMetric, isMexicanNewsUrl, isMoment, isNever, isNewsUrl, isNikeUrl, isNorwegianNewsUrl, isNotNull, isNothing, isNull, isNumber, isNumberLike, isNumericArray, isNumericString, isObject, isObjectToken, isOptionalParamFunction, isPhoneNumber, isPowerMetric, isPowerUom, isPressureMetric, isPressureUom, isReadonlyArray, isRecordToken, isRef, isRegExp, isRepoSource, isRepoUrl, isResistance, isResistanceUom, isRetailUrl, isSameTypeOf, isScalar, isSemanticVersion, isSet, isSetBasedKind, isSetBasedToken, isSetToken, isShape, isShapeCallback, isSimpleContainerToken, isSimpleContainerTokenTuple, isSimpleScalarToken, isSimpleScalarTokenTuple, isSimpleToken, isSimpleTokenTuple, isSingletonKind, isSingletonToken, isSocialMediaProfileUrl, isSocialMediaUrl, isSouthKoreanNewsUrl, isSpanishNewsUrl, isSpecificConstant, isSpeedMetric, isSpeedUom, isString, isStringArray, isSwissNewsUrl, isSymbol, isTailwindColor, isTailwindColorClass, isTailwindColorName, isTailwindColorTarget, isTailwindColorWithLuminosity, isTailwindColorWithLuminosityAndOpacity, isTailwindModifier, isTargetUrl, isTemperatureMetric, isTemperatureUom, isThenable, isThisMonth, isThisWeek, isThisYear, isTimeMetric, isTimeUom, isToday, isTomorrow, isTrimable, isTrue, isTruthy, isTuple, isTupleToken, isTurkishNewsUrl, isTypeOf, isTypeSubtype, isTypeToken, isTypeTokenKind, isTypeTuple, isUkNewsUrl, isUndefined, isUnset, isUom, isUri, isUrl, isUrlPath, isUrlSource, isUsNewsUrl, isUsStateAbbreviation, isUsStateName, isVoltageMetric, isVoltageUom, isVolumeMetric, isVolumeUom, 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, mergeObjects, mergeScalars, mergeTuples, nameLiteral, narrow, never, omit, optional, optionalOrNull, or, orNull, pathJoin, pluralize, removePhoneCountryCode, removeTailwindModifiers, removeUrlProtocol, result, retain, retainAfter, retainAfterInclusive, retainChars, retainUntil, retainUntilInclusive, retainWhile, reverse, rightWhitespace, shape, sharedKeys, shift, simpleContainerToken, simpleContainerTokenToTypeToken, simpleContainerType, simpleScalarToken, simpleScalarTokenToTypeToken, simpleScalarType, simpleToken, simpleType, simpleUnionTokenToTypeToken, slice, split, startsWith, stripAfter, stripBefore, stripChars, stripLeading, stripParenthesis, stripSurround, stripTrailing, stripUntil, stripWhile, surround, takeNumericCharacters, takeProp, toCamelCase, toKebabCase, toNumber, toNumericArray, toPascalCase, toSnakeCase, toString, toUppercase, trim, trimEnd, trimLeft, trimRight, trimStart, truncate, tuple, twColor, unbox, uncapitalize, union, unionize, unique, uniqueKeys, unset, uppercase, urlMeta, valuesOf, widen, withDefaults, withKeys, withoutKeys, withoutValue, wrapFn, youtubeEmbed, youtubeMeta };
37290
+ export { ACCELERATION_METRICS_LOOKUP$2 as ACCELERATION_METRICS_LOOKUP, ALPHA_CHARS, AMAZON_BOOKS, AMAZON_DNS$2 as AMAZON_DNS, APPLE_DNS$2 as APPLE_DNS, AREA_METRICS_LOOKUP$2 as AREA_METRICS_LOOKUP, AUSTRALIAN_NEWS$2 as AUSTRALIAN_NEWS, type Abs, type AbsMaybe, type Acceleration, type AccelerationMetrics, type AccelerationUom, type Add, type AddKeyValue, type AddUrlPathSegment, type AfterFirst, type AfterFirstChar, type AllCaps, type AllExtend, type AllLiteral, type AllNumericLiterals, type AllStringLiterals, type AllowNonTupleWhenSingular, type Alpha, type AlphaChar, type AlphaNumeric, type AlphaNumericChar, type AmPm, type AmPmCase, type AmazonUrl, type And, type AnyArray, type AnyFunction, type AnyObject, type AnyQueryParams, type Api, type ApiCallback, type ApiConfig, type ApiEscape, type ApiHandler, type ApiOptions, type ApiReturn, type ApiState, type ApiStateInitializer, type ApiSurface, type AppendRight, type AppleUrl, type AreSameLength, type AreSameType, type Area, type AreaMetrics, type AreaUom, type AriaDocStructureRoles, type AriaLandmarkRoles, type AriaLiveRegionRoles, type AriaRole, type AriaWidgetRoles, type AriaWindowRoles, type ArrayElementType, type ArrayTypeDefn, type As, type AsApi, type AsArray, type AsBoolean, type AsChoice, type AsClassSelector, type AsContainer, type AsDefined, type AsDictionary, type AsDoneFn, type AsErr, type AsErrKind, type AsError, type AsError__Meta, type AsEscapeFunction, type AsFinalizedConfig, type AsFnMeta, type AsFunction, type AsIndexOf, type AsIp6Prefix, type AsLeft, type AsLeftRight, type AsList, type AsLiteralFn, type AsNarrowingFn, type AsNegativeNumber, type AsNonNull, type AsNumber, type AsNumberWhenPossible, type AsNumericArray, type AsObject, type AsObjectKey, type AsObjectKeys, type AsOptionalParamFn, type AsPropertyKey, type AsRecord, type AsRef, type AsRight, type AsSomething, type AsString, type AsStringLiteral, type AsStringUnion, type AsToken, type AsTokenOpt, type AsTuple, type AsType, type AsUnion, type AsVueComputedRef, type AsyncFunction, type AustralianNewsCompanies, type AustralianNewsUrls, type AvailableConverters, type Awaited$1 as Awaited, BELGIUM_NEWS$2 as BELGIUM_NEWS, BEST_BUY_DNS$2 as BEST_BUY_DNS, BLOOD_MARKERS_LOOKUP, type BareCssSelector, type BaseTypeToken, type BeforeLast, type BelgianNewsCompanies, type BelgianNewsUrls, type BespokeLiteral, type BespokeUnion, type BestBuyUrl, type BooleanLike, type Box, type BoxValue, type BoxedFnParams, type Bracket, type 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 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 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 CssAbsolutionPositioningProperties, type CssAlignContent, type CssAlignItems, type CssAlignProperties, type CssAlignSelf, type CssAnimation, type CssAnimationComposition, type CssAnimationDelay, type CssAnimationDirection, type CssAnimationDuration, type CssAnimationFillMode, type CssAnimationIterationCount, type CssAnimationPlayState, type CssAnimationProperties, type CssAnimationTimingFunction, type CssAppearance, type CssAspectRatio, type CssBackdropFilter, type CssBackgroundProperties, type CssBorderCollapse, type CssBorderImageRepeat, type CssBorderImageSource, type CssBorderInlineSizing, type CssBorderProperties, type CssBorderStyle, type CssBorderWidth, type CssBoxAlign, type CssBoxDecorationBreak, type CssBoxProperties, type CssBoxShadow, type CssBoxSizing, type CssCalc, type CssClamp, type CssClassSelector, type CssColor, type CssColorFn, type CssColorLight, type CssColorMix, type CssColorMixLight, type CssColorModel, type CssColorSpace, type CssColorSpacePrimary, type CssContent, type CssCursor, type CssDefinition, type CssDisplay, type CssDisplayStatePseudoClasses, type CssFlex, type CssFlexBasis, type CssFlexDirection, type CssFlexFlow, type CssFlexGrow, type CssFlexShrink, type CssFloat, type CssFontFamily, type CssFontFeatureSetting, type CssFontKerning, type CssFontLanguageOverride, type CssFontPalette, type CssFontStyle, type CssFontSynthesis, type CssFontWeight, type CssFontWidth, type CssFunctionalPseudoClass, type CssGap, type CssGlobal, type CssHangingPunctuation, type CssHexColor, type CssHsb, type CssHsl, type CssIdSelector, type CssImageOrientation, type CssImageRendering, type CssImageResolution, type CssInputPseudoClasses, type CssJustifyContent, type CssJustifyItems, type CssJustifyProperties, type CssJustifySelf, type CssKeyframeCallback, type CssKeyframeTimestamp, type CssKeyframeTimestampSuggest, type CssLetterSpacing, type CssLinguisticPseudoClasses, type CssListStyle, type CssLocationPseudoClasses, type CssMargin, type CssMarginBlock, type CssMarginBlockEnd, type CssMarginBlockStart, type CssMarginBottom, type CssMarginInline, type CssMarginInlineEnd, type CssMarginInlineStart, type CssMarginLeft, type CssMarginProperties, type CssMarginRight, type CssMarginTop, type CssMixBlendMode, type CssNamedColors, type CssNamedSizes, type CssObjectFit, type CssObjectPosition, type CssOffsetDistance, type CssOffsetPath, type CssOffsetPosition, type CssOffsetProperties, type CssOkLch, type CssOpacity, type CssOutline, type CssOutlineColor, type CssOutlineOffset, type CssOutlineProperties, type CssOutlineStyle, type CssOutlineWidth, type CssOverflowAnchor, type CssOverflowBlock, type CssOverflowClipMargin, type CssOverflowInline, type CssOverflowProperties, type CssOverflowX, type CssOverflowY, type CssPadding, type CssPaddingBlock, type CssPaddingBlockEnd, type CssPaddingBlockStart, type CssPaddingBottom, type CssPaddingInline, type CssPaddingInlineEnd, type CssPaddingInlineStart, type CssPaddingLeft, type CssPaddingProperties, type CssPaddingRight, type CssPaddingTop, type CssPerspectiveOrigin, type CssPlaceContent, type CssPlaceItems, type CssPlaceProperties, type CssPlaceSelf, type CssPointerEvent, type CssPosition, type CssProperty, type CssPseudoClass, type CssPseudoClassDefn, type CssResourceStatePseudoClasses, type CssRgb, type CssRgba, type CssRotation, type CssRound, type CssSelector, type CssSelectorOptions, type CssSizing, type CssSizingFunction, type CssSizingLight, type CssStroke, type CssStrokeDasharray, type CssStrokeProperties, type CssTagSelector, type CssTextAlign, type CssTextDecorationLine, type CssTextDecorationStyle, type CssTextIndent, type CssTextJustify, type CssTextOrientation, type CssTextOverflow, type CssTextPosition, type CssTextProperties, type CssTextRendering, type CssTextTransform, type CssTextWrap, type CssTextWrapMode, type CssTextWrapStyle, type CssTimePseudoClasses, type CssTiming, type CssTransform, type CssTransformBox, type CssTransformOrigin, type CssTransformProperties, type CssTransformStyle, type CssTranslate, type CssTranslateFn, type CssTreePseudoClasses, type CssUserActionPseudoClasses, type CssVar, type CssVarWithFallback, type CssWhiteSpace, type CssWhiteSpaceCollapse, type CssWordBreak, type CssWritingMode, type CsvFormat, type CsvToJsonTuple, type CsvToStrUnion, type CsvToTuple, type CsvToTupleStr, type CsvToUnion, type Current, type CurrentMetrics, type CurrentUom, type CvsUrl, DANISH_NEWS$2 as DANISH_NEWS, DEFAULT_MANY_TO_ONE_MAPPING, DEFAULT_ONE_TO_MANY_MAPPING, DEFAULT_ONE_TO_ONE_MAPPING, DELL_DNS$2 as DELL_DNS, DISTANCE_METRICS_LOOKUP$2 as DISTANCE_METRICS_LOOKUP, DUTCH_NEWS$2 as DUTCH_NEWS, type DanishNewsCompanies, type DanishNewsUrls, type DashToSnake, type DashUppercase, type Date$2 as Date, type DateSeparator, type DateThenMonth, type DateThenMonthThenYear, type DateTime, type DateTimeMinutes, type DateTimeSeconds, type DayOfWeek, type DayofWeekFull, type DecomposeMapConfig, type Decrement, type Default, type DefaultManyToOneMapping, type DefaultOneToManyMapping, type DefaultOneToOneMapping, type DefineObject, type DefineObjectApi, type DefineStatelessApi, type Defined, type DellUrl, type Delta, type DeployConfig, type DialCountryCode, type Dict, type DictArray, type DictArrayFilterCallback, type DictArrayKv, type DictChangeValue, type DictFromKv, type DictKvTuple, type Dictionary, type DictionaryTypeDefn, type Digit, type DigitNonZero, type Digital, type DigitalLiteral, type Digitize, type Distance, type DistanceMetrics, type DistanceUom, type DnsName, type DockerCompose, type DockerDependsOn, type DockerService, type DoesExtend, type DoesNotExtend, type DomainName, type DoneFnTuple, type DotPathFor, type DoubleQuote, type DropChars, type DutchNewsCompanies, type DutchNewsUrls, EBAY_DNS$2 as EBAY_DNS, ENERGY_METRICS_LOOKUP$2 as ENERGY_METRICS_LOOKUP, ETSY_DNS$2 as ETSY_DNS, type EbayUrl, type ElementOf, type Email, type EmptyObject, type EmptyString, type EmptyStringOr, type EndingWithTypeGuard, type EndsWith, type Energy, type EnergyMetrics, type EnergyUom, type EnsureKeys, type EnsureLeading, type EnsureLeadingEvery, type EnsureSurround, type EnsureTrailing, type EqualTo, type Equals, type Err, type ErrFrom, type ErrInput, type ErrMsg, type ErrorCondition, type ErrorConditionHandler, type ErrorConditionShape, type EscapeFunction, type EsotericHtmlElement, type EtsyUrl, type Exif, type ExifAttributionInfo, type ExifCameraInfo, ExifCompression, ExifContrast, type ExifDateTimeInfo, ExifEmbedPolicy, type ExifExtraneous, ExifFlashValues, ExifGainControl, type ExifGps, ExifLightSource, type ExifPhotoContext, ExifPreviewColorSpace, ExifSaturation, ExifSceneCaptureType, ExifSharpness, ExifSubjectDistance, type ExpandDictionary, type ExpandRecursively, type ExpandTuple, type ExpandUnion, type ExplicitlyEmptyObject, type Extends, type ExtendsAll, type ExtendsNone, type ExtendsSome, FALSY_TYPE_KINDS$1 as FALSY_TYPE_KINDS, FALSY_VALUES, FRENCH_NEWS$2 as FRENCH_NEWS, FREQUENCY_METRICS_LOOKUP$2 as FREQUENCY_METRICS_LOOKUP, type Fail, type FalsyValue, type FifoQueue, type Filter, type FilterByProp, type FilterLiterals, type FilterProps, type FilterWideTypes, type FinalizedMapConfig, type Find, type FindFirstIndex, type FindIndexMetaOfString, type FindIndexMetaOfTuple, type FindIndexes, type FindIndexesWithMeta, type FindLastIndex, type Finder, type First, type FirstChar, type FirstKey, type FirstKeyValue, type FirstOfEach, type FirstString, type FixedLengthArray, type Flatten, type FlattenUnion, type FluentApi, type FluentFn, type FluentState, type FnAllowingProps, type FnArgsDefn, type FnDefn, type FnFrom, type FnMeta, type FnParam, type FnParams, type FnPropertiesDefn, type FnProps, type FnReturnTypeDefn, type FnWithDescription, type FnWithProps, type FontProperties, type FrenchNewsCompanies, type FrenchNewsUrls, type Frequency, type FrequencyMetrics, type FrequencyUom, type FromDefineObject, type FromDefn, type FromDictArray, type FromLiteralTokens, type FromMaybeRef, 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 GetEach, type GetEachOptions, type GetEscapeFunction, type GetInference, type GetInferenceProps, type GetOptions, type GetPhoneCountryCode, type GetPhoneNumberType, type GetTypeOf, type GetUrlPath, type GetUrlPort, type GetUrlProtocol, type GetUrlProtocolPrefix, type GetUrlQueryParams, type GetUrlSource, type GetYouTubePageType, type GitRef, type GithubActionsUrl, type GithubInsightPageType, type GithubInsightUrl, type GithubOrgUrl, type GithubRepoBranchesUrl, type GithubRepoDiscussionUrl, type GithubRepoDiscussionsUrl, type GithubRepoIssueUrl, type GithubRepoIssuesListUrl, type GithubRepoProjectUrl, type GithubRepoProjectsUrl, type GithubRepoPullRequestUrl, type GithubRepoPullRequestsUrl, type GithubRepoReleaseTagUrl, type GithubRepoReleasesUrl, type GithubRepoTagsUrl, type GithubRepoUrl, type GithubUrl, HASH_TABLE_ALPHA_LOWER, HASH_TABLE_ALPHA_UPPER, HASH_TABLE_CHAR, HASH_TABLE_DIGIT, HASH_TABLE_OTHER, HASH_TABLE_SPECIAL, HASH_TABLE_WIDE, HM_DNS$2 as HM_DNS, HOME_DEPOT_DNS$2 as HOME_DEPOT_DNS, type HandMUrl, type Handle, type HandleDoneFn, type HasArray, type HasCharacters, type HasEscapeFunction, type HasIndex, type HasIpAddress, type HasNetworkProtocolReference, type HasOtherCharacters, type HasParameters, type HasPhoneCountryCode, type HasProp, type HasQueryParameter, type HasRequiredProps, type HasSameKeys, type HasSameValues, type HasUnionType, type HasUppercase, type HasUrlPath, type HasUrlSource, type HasWideValues, type HaveSameNumericSign, type Healthcheck, type HexColor, type Hexadecimal, type HexadecimalChar, type HomeDepotUrl, type HoursMinutes, type HoursMinutes12, type HoursMinutesSeconds, type HoursMinutesSeconds12, type HoursMinutesSecondsMilliseconds, type HoursMinutesSecondsMilliseconds12, type HtmlBodyElement, type HtmlElement, type HtmlFrameworkElement, type HtmlFunctionalElement, type HtmlHeaderElement, type HtmlInputElement, type HtmlListElement, type HtmlMediaElement, type HtmlStructuralElement, type HtmlSymantecElement, type HtmlTableElement, IKEA_DNS$2 as IKEA_DNS, IMAGE_FORMAT_LOOKUP$1 as IMAGE_FORMAT_LOOKUP, INDIAN_NEWS$2 as INDIAN_NEWS, type IP6Multicast, type IP6Unicast, IPv4, IPv6$1 as IPv6, ISO3166_1$2 as ISO3166_1, ITALIAN_NEWS$2 as ITALIAN_NEWS, type IdentityFn, type IdentityFunction, type If, type IfAllExtend, type IfAllLiteral, type IfEqual, type IfEquals, type IfErrorCondition, type IfLeft, type IfLength, type IfLiteralKind, type IfNever, type IfUnset, type IfUnsetOrUndefined, type Iff, type IkeaUrl, type ImgFormat, type ImgFormatWeb, type Immutable, type Increment, type Indent$1 as Indent, type Indent2, type Indent4, type IndentSpaces, type IndentTab, type IndexOf, type Indexable, type IndexableObject, type IndianNewsCompanies, type IndianNewsUrls, type InlineSvg, type Integer, type IntegerBrand, type InternationalPhoneNumber, type Intersect$1 as Intersect, type IntersectAll, type IntersectWithAll, type IntersectingKeys, type Intersection, type InvertNumericSign, type Ip4Address, type Ip4Netmask, type Ip4Netmask16, type Ip4Netmask24, type Ip4Netmask32, type Ip4Netmask8, type Ip4NetmaskSuggestion, type Ip4Octet, type Ip6Address, type Ip6AddressFull, type Ip6AddressLoose, type Ip6Group, type Ip6GroupExpansion, type Ip6Loopback, type Ip6Subnet, type Ip6SubnetPrefix, type IsAllCaps, type IsAllLowercase, type IsArray, type IsBoolean, type IsBooleanLiteral, type IsCapitalized, type IsComputedRef, type IsContainer, type IsCssHexadecimal, type IsDefined, type IsDictionaryDefinition, type IsDomainName, type IsDotPath, type IsEmptyContainer, type IsEmptyObject, type IsEmptyString, type IsEqual, type IsErr, type IsErrorCondition, type IsEscapeFunction, type IsFalse, type IsFalsy, type IsFloat, type IsFnWithParams, type IsFunction, type IsGreaterThan, type IsGreaterThanOrEqual, type IsHexadecimal, type IsInteger, type IsIp4Address, type IsIp4Octet, type IsIp6Address, type IsIp6HexGroup, type IsIpAddress, type IsIso8601DateTime, type IsIsoDate, type IsIsoExplicitDate, type IsIsoImplicitDate, type IsIsoTime, type IsJsDate, type IsLength, type IsLessThan, type IsLessThanOrEqual, type IsLiteral, type IsLiteralFn, type IsLiteralKind, type IsLiteralUnion, type IsLowerAlpha, type IsLuxonDateTime, type IsMoment, type IsNarrowingFn, type IsNegativeNumber, type IsNever, type IsNonEmptyContainer, type IsNonEmptyObject, type IsNonLiteralUnion, type IsNotEqual, type IsNothing, type IsNull, type IsNumber, type IsNumberLike, type IsNumericLiteral, type IsObject, type IsObjectLiteral, type IsOk, type 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 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 Join, type Joiner, type JsonValue, type JsonValues, type JustFunction, KROGER_DNS$2 as KROGER_DNS, type KebabCase, type KebabKeys, type KeyOf, type KeyValue, type KeyframeApi, type Keys, type KeysEqualValue, type KeysNotEqualValue, type KeysWithValue, type KeysWithoutValue, type KindFrom, type KlassMeta, type KrogerUrl, type KvFn, type KvFnDefn, type KvFrom, type KvTuple, LITERAL_TYPE_KINDS$1 as LITERAL_TYPE_KINDS, LOWER_ALPHA_CHARS$2 as LOWER_ALPHA_CHARS, LOWES_DNS$2 as LOWES_DNS, LUMINOSITY_METRICS_LOOKUP$2 as LUMINOSITY_METRICS_LOOKUP, type Last, type LastChar, type LastInUnion$1 as LastInUnion, type LastOfEach, type LeadingNonAlpha, type Left, type LeftContains, type LeftDoubleMark, type LeftEquals, type LeftExtends, type LeftHeavyDoubleTurned, type LeftHeavySingleTurned, type LeftIncludes, type LeftLowDoublePrime, type LeftReversedDoublePrime, type LeftRight, type LeftRight__Operations, type LeftSingleMark, type LeftWhitespace, type Length, type LessThan, type LessThanOrEqual$1 as LessThanOrEqual, type LifoQueue, type LikeRegExp, type List, type LiteralFn, type LocalPhoneNumber, type 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, MONTH_ABBR$1 as MONTH_ABBR, MONTH_NAME$1 as MONTH_NAME, type MacysUrl, type MakeKeysOptional, type MakeKeysRequired, type MakePropsMutable, type ManyToMany, type ManyToOne, type ManyToZero, type MapCard, MapCardinality, type MapCardinalityFrom, type MapCardinalityIllustrated, type MapConfig, type MapCoverage, type MapError, type MapFn, type MapFnInput, type MapFnOutput, type MapIR, type MapInput, type MapInputFrom, type MapKeyDefn, type MapOR, type MapOutput, type MapOutputFrom, type MapTo, type MapValueDefn, type Mapper, type MapperApi, type MapperOld, type Marked$5 as Marked, type Mass, type MassMetrics, type MassUom, type MaxLength, type MaybeError, type MaybeRef, type Merge, type MergeKVs, type MergeObjects, type MergeScalars, type MergeTuples, type Metric, type MetricCategory, type MexicanNewsCompanies, type MexicanNewsUrls, type MilitaryHours, type MilitaryTime, type MilitaryTimeOptions, type Milliseconds, type Minutes, type MomentJs, type MonthAbbr, type MonthAbbrThenDate, type MonthAbbrThenDateAndYear, type MonthDay, type MonthName, type MonthNumeric, type MonthPostfix, type MonthThenDate, type MonthThenDateThenYear, type MonthThenDate_Simple, type MultiChoiceCallback, type MultipleChoice, type Mutable, type MutableProps, type MutablePropsExclusive, NARROW_CONTAINER_TYPE_KINDS$1 as NARROW_CONTAINER_TYPE_KINDS, NETWORK_PROTOCOL_LOOKUP$2 as NETWORK_PROTOCOL_LOOKUP, NIKE_DNS$2 as NIKE_DNS, NON_ZERO_NUMERIC_CHAR$2 as NON_ZERO_NUMERIC_CHAR, NORWEGIAN_NEWS$2 as NORWEGIAN_NEWS, NOT_APPLICABLE$1 as NOT_APPLICABLE, NOT_DEFINED$1 as NOT_DEFINED, NO_DEFAULT_VALUE$2 as NO_DEFAULT_VALUE, NUMERIC_CHAR$2 as NUMERIC_CHAR, NUMERIC_DIGIT$1 as NUMERIC_DIGIT, type NamedColor, type NamedColorMinimal, type NamedColor_Blue, type NamedColor_Brown, type NamedColor_Cyan, type NamedColor_Gray, type NamedColor_Green, type NamedColor_Orange, type NamedColor_Pink, type NamedColor_Purple, type NamedColor_Red, type NamedColor_White, type NamedColor_Yellow, type NamingConvention, type Narrow$1 as Narrow, type NarrowDictProps, type NarrowObject, type Narrowable, type NarrowableDefined, type NarrowableScalar, type NarrowingFn, type NarrowlyContains, type NegDelta, type Negative, type 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 OptionalParamFn, type OptionalProps, type OptionalSimpleScalarTokens, type OptionalSpace, type Or, PHONE_COUNTRY_CODES$1 as PHONE_COUNTRY_CODES, PHONE_FORMAT$1 as PHONE_FORMAT, PLURAL_EXCEPTIONS$2 as PLURAL_EXCEPTIONS, PLURAL_EXCEPTIONS_OLD, POWER_METRICS_LOOKUP$2 as POWER_METRICS_LOOKUP, PRESSURE_METRICS_LOOKUP$2 as PRESSURE_METRICS_LOOKUP, PROXMOX_CT_STATE, type 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 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 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, 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 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 Some, type SomeEqual, type SomeExtend, type Something, type SouthKoreanNewsCompanies, type SouthKoreanNewsUrls, type SpanishNewsCompanies, type SpanishNewsUrls, type SpecialChar, type Speed, type SpeedMetrics, type SpeedUom, type Split, type StackFrame, type StackTrace, type StandardMark, type StartingWithTypeGuard, type StartsWith, type StrLen, type StringComparatorOperation, type StringDelimiter, type StringKeys, type StringLength, type StringLiteralFromTuple, type 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 ToNumber, type ToNumericArray, type ToPhoneFormat, type ToString, type ToStringArray, type ToStringLiteral, type ToUnion, type TokenContainerClosure, type TokenFunctionClosure, type TokenSetClosure, type TokenizeStringLiteral, type Trim, type TrimLeft, type TrimRight, type Truncate$1 as Truncate, type TruncateAtLen, type TruthyReturns, type Tuple, type TupleDefn, type TupleRange, type TupleToUnion, type TurkishNewsCompanies, type TurkishNewsUrls, type TwChroma, type TwChroma100, type TwChroma200, type TwChroma300, type TwChroma400, type TwChroma50, type TwChroma500, type TwChroma600, type TwChroma700, type TwChroma800, type TwChroma900, type TwChroma950, type TwChromaLookup, type TwColor, type TwColorOptionalOpacity, type TwColorTarget, type TwColorWithLuminosity, type TwColorWithLuminosityOpacity, type TwHue, type TwLumi100, type TwLumi200, type TwLumi300, type TwLumi400, type TwLumi50, type TwLumi500, type TwLumi600, type TwLumi700, type TwLumi800, type TwLumi900, type TwLumi950, type TwLuminosity, type TwLuminosityLookup, type TwModifier, type TwModifier__Core, type TwModifier__Order, type TwModifier__Reln, type TwModifier__Size, type TwModifiers, type TwNeutralColor, type TwSizeResponsive, type TwStaticColor, type TwTarget__Color, type TwTarget__ColorLuminosity, type TwTarget__ColorLuminosityWithOpacity, type TwTarget__ColorName, type TwTarget__ColorWithOptPrefixes, type TwTarget__Color__Light, type TwVibrantColor, type Type, type TypeDefaultValue, type TypeDefinition, type TypeDefn, type TypeDefnValidations, type TypeErrorInfo, type TypeGuard, type TypeHasDefaultValue, type TypeHasUnderlying, type TypeHasValidations, type TypeIsRequired, type TypeKind, type TypeKindContainer, type TypeKindContainerNarrow, type TypeKindContainerWide, type TypeKindFalsy, type TypeKindLiteral, type TypeKindWide, type TypeOf, type TypeOfExtended, type TypeOfTypeGuard, type TypeOptions, type TypeRequired, type TypeStrength, type TypeSubtype, type TypeToken, type TypeTokenAtomics, type TypeTokenContainers, type TypeTokenDelimiter, type TypeTokenFunctions, type TypeTokenKind, type TypeTokenLookup, type TypeTokenSets, type TypeTokenSingletons, type TypeTokenStart, type TypeTokenStop, type TypeToken__Boolean, type TypeToken__False, type TypeToken__Fn, type TypeToken__FnSet, type TypeToken__Gen, type TypeToken__Never, type TypeToken__Null, type TypeToken__Number, type TypeToken__NumberSet, type TypeToken__Rec, type TypeToken__String, type TypeToken__StringSet, type TypeToken__True, type TypeToken__Undefined, type TypeToken__UnionSet, type TypeToken__Unknown, type TypeTuple, type TypeUnderlying, type TypedFunction, type TzHourOffset, UK_NEWS$2 as UK_NEWS, UPPER_ALPHA_CHARS$2 as UPPER_ALPHA_CHARS, US_NEWS$2 as US_NEWS, US_STATE_LOOKUP$2 as US_STATE_LOOKUP, US_STATE_LOOKUP_PROVINCES$2 as US_STATE_LOOKUP_PROVINCES, US_STATE_LOOKUP_STRICT, type UkNewsCompanies, type UkNewsUrls, type Unbox, type UndefinedArrayIsUnknown, type UnderlyingType, type UnionArrayToTuple, type UnionClosure, type UnionElDefn, type UnionFilter, type UnionFromProp, type UnionHasArray, type UnionMutate, type UnionMutationOp, type UnionRetain, type UnionShift, type UnionToIntersection, type UnionToTuple$1 as UnionToTuple, type UnionWithAll, type Unique, type UniqueKeys, type UniqueKeysUnion, type UniqueKv, type UnitType, type Unset, type Uom, type UpperAlphaChar, type UpsertKeyValue, type Uri, type UrlBuilder, type UrlMeta, type UrlOptions, type UrlPath, type UrlPort, type UrlQueryParameters, type UrlsFrom, type UsNewsCompanies, type UsNewsUrls, type UsStateAbbrev, type UsStateName, VOLTAGE_METRICS_LOOKUP$2 as VOLTAGE_METRICS_LOOKUP, VOLUME_METRICS_LOOKUP$2 as VOLUME_METRICS_LOOKUP, type ValidKey, type Validate, type ValidationFunction, type ValueAtDotPath, type ValueCallback, type ValueOrReturnValue, type Values, type VariableChar, type Voltage, type VoltageMetrics, type VoltageUom, type Volume, type 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, choices, createConstant, createConverter, createCssKeyframe, createCssSelector, createErrorCondition, createFifoQueue, createFixedLengthArray, createFnWithProps, createFnWithPropsExplicit, createLifoQueue, createMapper, createObjectMap, createTypeToken, cssColor, csv, defineCss, defineObj, defineObject, defineObjectApi, defineTuple, endsWith, ensureLeading, ensureSurround, ensureTrailing, entries, errCondition, filter, find, fnMeta, fromDefineObject, get, getDaysBetween, getEach, getPhoneCountryCode, getTailwindModifiers, getToday, getTokenKind, getTomorrow, getTypeSubtype, getUrlPath, getUrlPort, getUrlProtocol, getUrlQueryParams, getUrlSource, getWeekNumber, getYesterday, getYouTubePageType, handleDoneFn, hasDefaultValue, hasIndexOf, hasKeys, hasUrlPort, hasUrlQueryParameter, hasWhiteSpace, idLiteral, idTypeGuard, identity, ifArray, ifArrayPartial, ifBoolean, ifChar, ifContainer, ifDefined, ifFalse, ifFunction, ifHasKey, ifLength, ifLowercaseChar, ifNotNull, ifNull, ifNumber, ifObject, ifSameType, ifScalar, ifString, ifTrue, ifUndefined, ifUppercaseChar, indexOf, infer, intersect, intersection, ip6GroupExpansion, ip6Prefix, isAccelerationMetric, isAccelerationUom, isAlpha, isAmazonUrl, 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, isCssAspectRatio, isCurrentMetric, isCurrentUom, isCvsUrl, isDanishNewsUrl, isDate, isDefineObject, isDefined, isDellUrl, isDistanceMetric, isDistanceUom, isDomainName, isDoneFn, isDutchNewsUrl, isEbayUrl, isEmail, isEnergyMetric, isEnergyUom, isEqual, isErrorCondition, isEscapeFunction, isEtsyUrl, isFalse, isFalsy, isFnBasedKind, isFnBasedToken, isFnWithParams, isFrenchNewsUrl, isFrequencyMetric, isFrequencyUom, isFunction, isGermanNewsUrl, isGithubIssueUrl, isGithubIssuesListUrl, isGithubOrgUrl, isGithubProjectUrl, isGithubProjectsListUrl, isGithubReleaseTagUrl, isGithubReleasesListUrl, isGithubRepoReleaseTagUrl, isGithubRepoReleasesUrl, isGithubRepoUrl, isGithubUrl, isHexadecimal, isHmUrl, isHomeDepotUrl, isHtmlElement, isIkeaUrl, isIndexable, isIndianNewsUrl, isInlineSvg, isIp4Address, isIp6Address, isIpAddress, isIso3166Alpha2, isIso3166Alpha3, isIso3166CountryCode, isIso3166CountryName, isIsoDate, isIsoDateTime, isIsoExplicitDate, isIsoExplicitTime, isIsoImplicitDate, isIsoImplicitTime, isIsoTime, isIsoYear, isItalianNewsUrl, isJapaneseNewsUrl, isKrogersUrl, isLeapYear, isLength, isLikeRegExp, isLowesUrl, isLuminosityMetric, isLuminosityUom, isLuxonDateTime, isMacysUrl, isMapToken, isMassMetric, isMassUom, isMetric, isMexicanNewsUrl, isMoment, isNever, isNewsUrl, isNikeUrl, isNorwegianNewsUrl, isNotNull, isNothing, isNull, isNumber, isNumberLike, isNumericArray, isNumericString, isObject, isObjectToken, isOptionalParamFunction, isPhoneNumber, isPowerMetric, isPowerUom, isPressureMetric, isPressureUom, isReadonlyArray, isRecordToken, isRef, isRegExp, isRepoSource, isRepoUrl, isResistance, isResistanceUom, isRetailUrl, isSameTypeOf, isScalar, isSemanticVersion, isSet, isSetBasedKind, isSetBasedToken, isSetToken, isShape, isShapeCallback, isSimpleContainerToken, isSimpleContainerTokenTuple, isSimpleScalarToken, isSimpleScalarTokenTuple, isSimpleToken, isSimpleTokenTuple, isSingletonKind, isSingletonToken, isSocialMediaProfileUrl, isSocialMediaUrl, isSouthKoreanNewsUrl, isSpanishNewsUrl, isSpecificConstant, isSpeedMetric, isSpeedUom, isString, isStringArray, isSwissNewsUrl, isSymbol, isTailwindColor, isTailwindColorClass, isTailwindColorName, isTailwindColorTarget, isTailwindColorWithLuminosity, isTailwindColorWithLuminosityAndOpacity, isTailwindModifier, isTargetUrl, isTemperatureMetric, isTemperatureUom, isThenable, isThisMonth, isThisWeek, isThisYear, isTimeMetric, isTimeUom, isToday, isTomorrow, isTrimable, isTrue, isTruthy, isTuple, isTupleToken, isTurkishNewsUrl, isTypeOf, isTypeSubtype, isTypeToken, isTypeTokenKind, isTypeTuple, isUkNewsUrl, isUndefined, isUnset, isUom, isUri, isUrl, isUrlPath, isUrlSource, isUsNewsUrl, isUsStateAbbreviation, isUsStateName, isVoltageMetric, isVoltageUom, isVolumeMetric, isVolumeUom, 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, mergeObjects, mergeScalars, mergeTuples, nameLiteral, narrow, narrowObjectTo, narrowObjectToType, never, objectToApi, omit, optional, optionalOrNull, or, orNull, pathJoin, pluralize, removePhoneCountryCode, removeTailwindModifiers, removeUrlProtocol, result, retain, retainAfter, retainAfterInclusive, retainChars, retainUntil, retainUntilInclusive, retainWhile, reverse, rightWhitespace, shape, sharedKeys, shift, simpleContainerToken, simpleContainerTokenToTypeToken, simpleContainerType, simpleScalarToken, simpleScalarTokenToTypeToken, simpleScalarType, simpleToken, simpleType, simpleUnionTokenToTypeToken, slice, split, startsWith, stripAfter, stripBefore, stripChars, stripLeading, stripParenthesis, stripSurround, stripTrailing, stripUntil, stripWhile, surround, takeNumericCharacters, takeProp, toCamelCase, toKebabCase, toNumber, toNumericArray, toPascalCase, toSnakeCase, toString, toUppercase, trim, trimEnd, trimLeft, trimRight, trimStart, truncate, tuple, twColor, unbox, uncapitalize, union, unionize, unique, uniqueKeys, unset, uppercase, urlMeta, valuesOf, widen, withDefaults, withKeys, withoutKeys, withoutValue, wrapFn, youtubeEmbed, youtubeMeta };