Skip to content

Commit

Permalink
ok eslint thanks
Browse files Browse the repository at this point in the history
  • Loading branch information
enisdenjo committed Jan 13, 2025
1 parent 682fce6 commit 4a3252b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/error/GraphQLError.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ import { Maybe } from '../jsutils/Maybe';
import { ASTNode } from '../language/ast';
import { Source } from '../language/source';
import { SourceLocation } from '../language/location';

// eslint-disable-next-line import/no-cycle
import { GraphQLFormattedError } from './formatError';

/**
Expand Down
1 change: 1 addition & 0 deletions src/error/GraphQLError.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ import type { Source } from '../language/source';
import type { SourceLocation } from '../language/location';
import { getLocation } from '../language/location';
import { printLocation, printSourceLocation } from '../language/printLocation';

import { formatError } from './formatError';
import type { GraphQLFormattedError } from './formatError';

Expand Down
1 change: 1 addition & 0 deletions src/error/formatError.d.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import { SourceLocation } from '../language/location';

// eslint-disable-next-line import/no-cycle
import { GraphQLError } from './GraphQLError';

/**
Expand Down

0 comments on commit 4a3252b

Please sign in to comment.