AnyArrayOf
Home > @gooddata/sdk-ui > AnyArrayOf
AnyArrayOf type
Generate all possible combinations of arrays signatures for the union type.
Signature:
export type AnyArrayOf<T> = T[] | ArrayOf<T>;
References: ArrayOf
Example
IAttribute | IMeasure is resolved as IAttribute[] | IMeasure[] | (IAttribute | IMeasure)[]