@sentry/node
Version:
Official Sentry SDK for Node.js
35 lines (34 loc) • 773 B
TypeScript
import { Client, Event, EventHint, Integration } from '@sentry/types';
/** Adds SDK info to an event. */
export declare class LinkedErrors implements Integration {
/**
* @inheritDoc
*/
static id: string;
/**
* @inheritDoc
*/
readonly name: string;
/**
* @inheritDoc
*/
private readonly _key;
/**
* @inheritDoc
*/
private readonly _limit;
/**
* @inheritDoc
*/
constructor(options?: {
key?: string;
limit?: number;
});
/** @inheritdoc */
setupOnce(): void;
/**
* @inheritDoc
*/
preprocessEvent(event: Event, hint: EventHint | undefined, client: Client): void;
}
//# sourceMappingURL=linkederrors.d.ts.map