Skip to content

Commit 1cebb33

Browse files
committed
Fix lint
1 parent 047ace8 commit 1cebb33

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/node/src/integrations/localvariables/localvariables-async.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import type { Session } from 'node:inspector/promises';
22
import type { Event, EventProcessor, Exception, Hub, Integration, StackFrame, StackParser } from '@sentry/types';
33
import { LRUMap, logger } from '@sentry/utils';
4-
import type { Runtime } from 'inspector';
4+
import type { Debugger, InspectorNotification, Runtime } from 'inspector';
55
import type { NodeClient } from '../../client';
66

77
import type { NodeClientOptions } from '../../types';
@@ -119,7 +119,7 @@ export class LocalVariablesAsync implements Integration {
119119
isPaused = false;
120120
});
121121

122-
session.on('Debugger.paused', event => {
122+
session.on('Debugger.paused', (event: InspectorNotification<Debugger.PausedEventDataType>) => {
123123
isPaused = true;
124124

125125
this._handlePaused(session, options.stackParser, event.params as PausedExceptionEvent)

0 commit comments

Comments
 (0)