We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f6ba764 commit 1585e74Copy full SHA for 1585e74
packages/graphql-language-service-parser/src/types.ts
@@ -1,5 +1,4 @@
1
import { Kind } from 'graphql';
2
-import { _Kind } from 'graphql/language/kinds';
3
import { Maybe } from 'graphql-language-service-types';
4
import CharacterStream from './CharacterStream';
5
@@ -114,7 +113,7 @@ export const RuleKinds = {
114
113
...AdditionalRuleKinds,
115
};
116
117
-export type _RuleKinds = _Kind & typeof AdditionalRuleKinds;
+export type _RuleKinds = typeof Kind & typeof AdditionalRuleKinds;
118
119
export type RuleKind = _RuleKinds[keyof _RuleKinds];
120
export type RuleKindEnum = RuleKind;
0 commit comments