index-ticketing
Version:
Automatic error tracking and ticketing system integration
11 lines • 403 B
TypeScript
import { ErrorEvent } from '../types';
/**
* Generate a fingerprint for error grouping
* Similar errors should have the same fingerprint
*/
export declare function generateFingerprint(error: ErrorEvent): string[];
/**
* Check if two fingerprints represent the same error
*/
export declare function matchesFingerprint(fp1: string[], fp2: string[]): boolean;
//# sourceMappingURL=fingerprint.d.ts.map