UNPKG

@sitecore/sc-contenthub-webclient-sdk

Version:

Sitecore Content Hub WebClient SDK.

14 lines (13 loc) 257 B
/** * Interface for notification requests that target users by id. */ export interface IRequestById { /** * Gets or sets the recipients. */ recipients: Array<number>; /** * Validates the request. */ validate(): void; }