No Description

TextMarkerToolbarItem.js 565B

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