AnyPlaceholderOf
Home > @gooddata/sdk-ui > AnyPlaceholderOf
AnyPlaceholderOf type
Generate all possible combinations of placeholder signatures for the union type.
Signature:
export type AnyPlaceholderOf<T> = AnyPlaceholder<T> | PlaceholderOf<T>;
References: AnyPlaceholder, PlaceholderOf
Example
IAttribute | IMeasure
is resolved as
AnyPlaceholder\<IAttribute\> | AnyPlaceholder\<IMeasure\> | AnyPlaceholder\<IAttribute | IMeasure\>