No Description

RectMarkerToolbarItem.js 570B

123456789101112131415
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", { value: true });
  3. var RectMarker_1 = require("./RectMarker");
  4. var rect_marker_toolbar_icon_svg_1 = require("./rect-marker-toolbar-icon.svg");
  5. var RectMarkerToolbarItem = (function () {
  6. function RectMarkerToolbarItem() {
  7. this.name = "rect-marker";
  8. this.tooltipText = "Rectangle";
  9. this.icon = rect_marker_toolbar_icon_svg_1.default;
  10. this.markerType = RectMarker_1.RectMarker;
  11. }
  12. return RectMarkerToolbarItem;
  13. }());
  14. exports.RectMarkerToolbarItem = RectMarkerToolbarItem;