sentry-wechat-miniprogram
Version:
@sentry/browser 的微信小程序版本。
40 lines (39 loc) • 681 B
TypeScript
import { Integration } from '@sentry/types';
/** Adds SDK info to an event. */
export declare class LinkedErrors implements Integration {
/**
* @inheritDoc
*/
readonly name: string;
/**
* @inheritDoc
*/
static id: string;
/**
* @inheritDoc
*/
private readonly _key;
/**
* @inheritDoc
*/
private readonly _limit;
/**
* @inheritDoc
*/
constructor(options?: {
key?: string;
limit?: number;
});
/**
* @inheritDoc
*/
setupOnce(): void;
/**
* @inheritDoc
*/
private _handler;
/**
* @inheritDoc
*/
private _walkErrorTree;
}