123456789101112131415 |
- "use strict";
- Object.defineProperty(exports, "__esModule", { value: true });
- var RectMarker_1 = require("./RectMarker");
- var rect_marker_toolbar_icon_svg_1 = require("./rect-marker-toolbar-icon.svg");
- var RectMarkerToolbarItem = (function () {
- function RectMarkerToolbarItem() {
- this.name = "rect-marker";
- this.tooltipText = "Rectangle";
- this.icon = rect_marker_toolbar_icon_svg_1.default;
- this.markerType = RectMarker_1.RectMarker;
- }
- return RectMarkerToolbarItem;
- }());
- exports.RectMarkerToolbarItem = RectMarkerToolbarItem;
|