(metricName: string)
| 101 | this.native.putMetric(metricName, value); |
| 102 | } |
| 103 | removeMetric(metricName: string): void { |
| 104 | this.native.removeAttribute(metricName); |
| 105 | } |
| 106 | start() { |
| 107 | this.native.start(); |
| 108 | } |
nothing calls this directly
no test coverage detected