Skip to content

InferArgs ​

Extract resolved value types from a record of builders.

Signatures ​

ts
type InferArgs<T extends Record<string, ArgBuilder<ArgConfig>>> = { [K in keyof T]: InferArg<T[K]> };

See Also ​

Released under the MIT License.