UNPKG

@sitecore/sc-contenthub-webclient-sdk

Version:

Sitecore Content Hub WebClient SDK.

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