123456789101112131415 |
- "use strict";
- Object.defineProperty(exports, "__esModule", { value: true });
- var ArrowMarker_1 = require("./ArrowMarker");
- var arrow_marker_toolbar_icon_svg_1 = require("./arrow-marker-toolbar-icon.svg");
- var ArrowMarkerToolbarItem = (function () {
- function ArrowMarkerToolbarItem() {
- this.name = 'arrow-marker';
- this.tooltipText = 'Arrow';
- this.icon = arrow_marker_toolbar_icon_svg_1.default;
- this.markerType = ArrowMarker_1.ArrowMarker;
- }
- return ArrowMarkerToolbarItem;
- }());
- exports.ArrowMarkerToolbarItem = ArrowMarkerToolbarItem;
|