Skip to content

Commit eccfa79

Browse files
committed
chore: Merge import statements
Signed-off-by: Kaung Zin Hein <[email protected]>
1 parent f778e13 commit eccfa79

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

packages/browser/src/integrations/graphqlClient.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,11 @@ import {
66
SEMANTIC_ATTRIBUTE_URL_FULL,
77
defineIntegration,
88
hasProp,
9+
isString,
910
spanToJSON,
11+
stringMatchesSomePattern,
1012
} from '@sentry/core';
1113
import type { Client, IntegrationFn } from '@sentry/core';
12-
import { isString, stringMatchesSomePattern } from '@sentry/core';
1314

1415
interface GraphQLClientOptions {
1516
endpoints: Array<string | RegExp>;

packages/core/src/client.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -611,7 +611,7 @@ export abstract class Client<O extends ClientOptions = ClientOptions> {
611611

612612
/**
613613
* A hook that is called when the client is flushing
614-
* @returns A function that, when executed, removes the registered callback.
614+
* @returns {() => void} A function that, when executed, removes the registered callback.
615615
*/
616616
public on(hook: 'flush', callback: () => void): () => void;
617617

0 commit comments

Comments
 (0)