typealias RecursiveArray

export type RecursiveArray<ItemType> = readonly (ItemType | RecursiveArray<ItemType>)[];

A type that recursively traverses into arrays.

Type Parameters

ItemType

Union Members

readonly (ItemTypeRecursiveArray<ItemType>)[]