(metricName: string)
| 106 | return this.native.valueForAttribute(attribute); |
| 107 | } |
| 108 | getMetric(metricName: string): number { |
| 109 | return this.native.valueForIntMetric(metricName); |
| 110 | } |
| 111 | getMetrics(): { [key: string]: number } { |
| 112 | return deserialize(this.native.attributes); |
| 113 | } |
nothing calls this directly
no outgoing calls
no test coverage detected