@sitecore/sc-contenthub-webclient-sdk
Version:
Sitecore Content Hub WebClient SDK.
8 lines (7 loc) • 334 B
TypeScript
import { MapCultureTo } from "../../../base-types";
import { IOptionListValue } from "./option-list-value";
export default abstract class OptionListValueBase implements IOptionListValue {
readonly identifier: string;
readonly labels: MapCultureTo<string>;
constructor(identifier: string, labels?: MapCultureTo<string>);
}