1234567891011121314 |
- "use strict";
- Object.defineProperty(exports, "__esModule", { value: true });
- var ToolbarItem = (function () {
- function ToolbarItem(_a) {
- var name = _a.name, tooltipText = _a.tooltipText, icon = _a.icon, markerType = _a.markerType;
- this.name = name;
- this.tooltipText = tooltipText;
- this.icon = icon;
- this.markerType = markerType;
- }
- return ToolbarItem;
- }());
- exports.ToolbarItem = ToolbarItem;
|