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