awv3
Version:
⚡ AWV3 embedded CAD
25 lines (20 loc) • 567 B
JavaScript
import _extends from "@babel/runtime/helpers/extends";
import _inheritsLoose from "@babel/runtime/helpers/inheritsLoose";
import Element from '../element';
var Selection =
/*#__PURE__*/
function (_Element) {
_inheritsLoose(Selection, _Element);
function Selection(plugin, options) {
if (options === void 0) {
options = {};
}
return _Element.call(this, plugin, _extends({
type: Element.Type.Dropdown,
value: undefined,
items: []
}, options)) || this;
}
return Selection;
}(Element);
export { Selection as default };