UNPKG

@sitecore/sc-contenthub-webclient-sdk

Version:

Sitecore Content Hub WebClient SDK.

17 lines (16 loc) 599 B
export interface ICondition { /** * The condition is met for entities that are direct or indirect descendants of the entities with the specified ids. * The entities are combined using the "OR" operator. */ entityIds: Array<number>; /** * The condition is met for entities that are direct descendants of the entities with the specified ids. * The entities are combined using the "OR" operator. */ directEntityIds: Array<number>; } export declare class Condition implements ICondition { entityIds: Array<number>; directEntityIds: Array<number>; }