| 1 | import { FirebaseApp } from '@nativescript/firebase-core'; |
| 2 | export interface ICrashlytics { |
| 3 | readonly app: FirebaseApp; |
| 4 | checkForUnsentReports(): Promise<boolean>; |
| 5 | crash(): void; |
| 6 | deleteUnsentReports(); |
| 7 | didCrashOnPreviousExecution(): boolean; |
| 8 | log(message: string): void; |
| 9 | recordError(error: any): void; |
| 10 | sendUnsentReports(): void; |
| 11 | setAttribute(name: string, value: string | number | boolean); |
| 12 | setAttributes(attributes: { [key: string]: string | number | boolean }); |
| 13 | setCrashlyticsCollectionEnabled(enabled: boolean); |
| 14 | setUserId(userId: string); |
| 15 | } |
no outgoing calls
no test coverage detected
searching dependent graphs…