@tempots/dom
UseMany type
Represents a type that extracts the value types from a record of Consumer
types.
Signature:
export type UseManyextends Record<string, Consumer<unknown>>> = {
[K in keyof C]: C[K] extends Consumer ? V : never;
};
References: Consumer