Skip to content

Commit

Permalink
Fix lint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
jerelmiller committed May 15, 2023
1 parent 70b8693 commit b94fbda
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion src/link/remove-typename/removeTypenameFromVariables.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import { Trie } from '@wry/trie';
import { wrap } from 'optimism';
import { DocumentNode, Kind, TypeNode, visit } from 'graphql';
import type { DocumentNode, TypeNode } from 'graphql';
import { Kind, visit } from 'graphql';
import { ApolloLink } from '../core';
import { canUseWeakMap, stripTypename } from '../../utilities';

Expand Down
3 changes: 2 additions & 1 deletion src/utilities/common/stripTypename.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import { omitDeep, OmitDeepOptions } from './omitDeep';
import type { OmitDeepOptions } from './omitDeep';
import { omitDeep } from './omitDeep';

interface StripTypenameOptions {
keep?: OmitDeepOptions['keep'];
Expand Down

0 comments on commit b94fbda

Please sign in to comment.