UNPKG

@sitecore/sc-contenthub-webclient-sdk

Version:

Sitecore Content Hub WebClient SDK.

10 lines 446 B
import OptionListValueBase from "../../contracts/base/option-lists/option-list-value-base"; export default class HierarchicalOptionListValue extends OptionListValueBase { constructor(identifier, labels, values) { super(identifier, labels); //TODO add 'not all null' guard for values this.values = values || []; } } export { HierarchicalOptionListValue }; //# sourceMappingURL=hierarchical-options-list-value.js.map