UNPKG

@capacitor-firebase/crashlytics

Version:

Capacitor plugin for Firebase Crashlytics.

34 lines 1.12 kB
import { WebPlugin } from '@capacitor/core'; export class FirebaseCrashlyticsWeb extends WebPlugin { async crash() { throw this.unimplemented('Not implemented on web.'); } async setCustomKey(_options) { throw this.unimplemented('Not implemented on web.'); } async setUserId(_options) { throw this.unimplemented('Not implemented on web.'); } async log(_options) { throw this.unimplemented('Not implemented on web.'); } async setEnabled(_options) { throw this.unimplemented('Not implemented on web.'); } async isEnabled() { throw this.unimplemented('Not implemented on web.'); } async didCrashOnPreviousExecution() { throw this.unimplemented('Not implemented on web.'); } async sendUnsentReports() { throw this.unimplemented('Not implemented on web.'); } async deleteUnsentReports() { throw this.unimplemented('Not implemented on web.'); } async recordException(_options) { throw this.unimplemented('Not implemented on web.'); } } //# sourceMappingURL=web.js.map