* Returns a copy of this BaseEvent's internal data * (copy to prevent altering of class internals without setters)
()
| 112 | * (copy to prevent altering of class internals without setters) |
| 113 | */ |
| 114 | public getEventData(): Event.BaseEventData { |
| 115 | return { |
| 116 | Label: this._label, |
| 117 | Duration: this._duration, |
| 118 | Properties: this.getCustomProperties() |
| 119 | }; |
| 120 | } |
| 121 | |
| 122 | public getLabel(): string { |
| 123 | return Event.Label[this._label]; |
no test coverage detected