Skip to content

Commit c566814

Browse files
author
Luca Forstner
committed
Fix linter
1 parent 07cac20 commit c566814

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

packages/nextjs/src/edge/utils/edgeWrapperUtils.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { captureException, getCurrentHub, startTransaction } from '@sentry/core';
22
import { hasTracingEnabled } from '@sentry/tracing';
3-
import { Span } from '@sentry/types';
3+
import type { Span } from '@sentry/types';
44
import {
55
addExceptionMechanism,
66
baggageHeaderToDynamicSamplingContext,
@@ -9,7 +9,7 @@ import {
99
objectify,
1010
} from '@sentry/utils';
1111

12-
import { EdgeRouteHandler } from '../types';
12+
import type { EdgeRouteHandler } from '../types';
1313
import { flush } from './flush';
1414

1515
/**

packages/nextjs/src/edge/utils/flush.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { getCurrentHub } from '@sentry/core';
2-
import { Client } from '@sentry/types';
2+
import type { Client } from '@sentry/types';
33
import { logger } from '@sentry/utils';
44

55
/**

packages/nextjs/src/edge/withSentryAPI.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { getCurrentHub } from '@sentry/core';
22

3-
import { EdgeRouteHandler } from './types';
3+
import type { EdgeRouteHandler } from './types';
44
import { withEdgeWrapping } from './utils/edgeWrapperUtils';
55

66
/**

packages/nextjs/src/edge/withSentryMiddleware.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { EdgeRouteHandler } from './types';
1+
import type { EdgeRouteHandler } from './types';
22
import { withEdgeWrapping } from './utils/edgeWrapperUtils';
33

44
/**

0 commit comments

Comments
 (0)