nativescript-sentry.io
Version:
This plugin uses sentry-android and sentry-cocoa to catch native errors/stack traces and send them to a sentry server.
16 lines (15 loc) • 700 B
TypeScript
/// <reference path="node_modules/tns-platform-declarations/ios.d.ts" />
/// <reference path="sentry-api.ios.d.ts" />
import { Common } from './sentry.common';
import { SentryUser } from './index';
export declare class Sentry extends Common {
static init(dsn: string): void;
static captureMessage(message: string, options: any): void;
static captureException(exception: Error, options: any): void;
static captureBreadcrumb(breadcrumb: any): void;
static setContextUser(user: SentryUser): void;
static setContextTags(tags: any): void;
static setContextExtra(extra: any): void;
static clearContext(): void;
static onBeforeSend(callback: any): void;
}