123456789101112131415 |
- "use strict";
- Object.defineProperty(exports, "__esModule", { value: true });
- var TextMarker_1 = require("./TextMarker");
- var text_marker_toolbar_icon_svg_1 = require("./text-marker-toolbar-icon.svg");
- var TextMarkerToolbarItem = (function () {
- function TextMarkerToolbarItem() {
- this.name = "text-marker";
- this.tooltipText = "Text";
- this.icon = text_marker_toolbar_icon_svg_1.default;
- this.markerType = TextMarker_1.TextMarker;
- }
- return TextMarkerToolbarItem;
- }());
- exports.TextMarkerToolbarItem = TextMarkerToolbarItem;
|