| 49 | } |
| 50 | |
| 51 | export class Performance implements IPerformance { |
| 52 | readonly native: any; |
| 53 | readonly ios: any; |
| 54 | readonly android: any; |
| 55 | readonly app: any; |
| 56 | |
| 57 | constructor(); |
| 58 | |
| 59 | isPerformanceCollectionEnabled: boolean; |
| 60 | |
| 61 | newHttpMetric(url: string, httpMethod: HttpMethod): HttpMetric; |
| 62 | |
| 63 | newTrace(identifier: string): Trace; |
| 64 | |
| 65 | startTrace(identifier: string): Trace; |
| 66 | } |
| 67 | |
| 68 | declare module '@nativescript/firebase-core' { |
| 69 | export interface Firebase extends FirebasePerformance {} |
nothing calls this directly
no outgoing calls
no test coverage detected