Appearance
type MultiplyArray<T> = { [K in keyof T]: T[K][] };
Converts each element of a tuple into an array of that element type.
T
unknown