@sentry/core
Version:
Base implementation for all Sentry JavaScript SDKs
12 lines • 326 B
TypeScript
import type { Mechanism } from './mechanism';
import type { Stacktrace } from './stacktrace';
/** JSDoc */
export interface Exception {
type?: string;
value?: string;
mechanism?: Mechanism;
module?: string;
thread_id?: number | string;
stacktrace?: Stacktrace;
}
//# sourceMappingURL=exception.d.ts.map