설명 없음

ToolbarItem.js 444B

1234567891011121314
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", { value: true });
  3. var ToolbarItem = (function () {
  4. function ToolbarItem(_a) {
  5. var name = _a.name, tooltipText = _a.tooltipText, icon = _a.icon, markerType = _a.markerType;
  6. this.name = name;
  7. this.tooltipText = tooltipText;
  8. this.icon = icon;
  9. this.markerType = markerType;
  10. }
  11. return ToolbarItem;
  12. }());
  13. exports.ToolbarItem = ToolbarItem;