(attribute: string, value: string)
| 95 | this.native.incrementMetric(metricName, incrementBy); |
| 96 | } |
| 97 | putAttribute(attribute: string, value: string): void { |
| 98 | this.native.putAttribute(attribute, value); |
| 99 | } |
| 100 | putMetric(metricName: string, value: number): void { |
| 101 | this.native.putMetric(metricName, value); |
| 102 | } |
nothing calls this directly
no test coverage detected