UNPKG

@sitecore/sc-contenthub-webclient-sdk

Version:

Sitecore Content Hub WebClient SDK.

16 lines 304 B
/** * {@inheritDoc} */ export class Rule { get identifier() { return this._identifier; } constructor(init) { this._identifier = null; Object.assign(this, init); } setIdentifier(guid) { this._identifier = guid; } } //# sourceMappingURL=rule.js.map