Recursively defines an array of T where elements can be nested arrays of arbitrary depth.
T
The element type
const a: DeepArray<string> = ["a", "b"];const b: DeepArray<string> = ["a", ["b", "c", []], [["d"]]]; Copy
const a: DeepArray<string> = ["a", "b"];const b: DeepArray<string> = ["a", ["b", "c", []], [["d"]]];
Recursively defines an array of
Twhere elements can be nested arrays of arbitrary depth.