Appearance
gunshi / default / ArgValues
type ArgValues<T> = T extends ArgOptions ? ResolveArgValues<T, { [Option in keyof T]: ExtractOptionValue<T[Option]> }> : object;
An object that contains the values of the arguments.
T