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 367ab23 commit 1a0e918Copy full SHA for 1a0e918
tstypes/type/directives.d.ts
@@ -67,6 +67,4 @@ export const GraphQLDeprecatedDirective: GraphQLDirective;
67
*/
68
export const specifiedDirectives: ReadonlyArray<GraphQLDirective>;
69
70
-export function isSpecifiedDirective(
71
- directive: any,
72
-): directive is GraphQLDirective;
+export function isSpecifiedDirective(directive: any): boolean;
tstypes/type/scalars.d.ts
@@ -8,4 +8,4 @@ export const GraphQLID: GraphQLScalarType;
8
9
export const specifiedScalarTypes: ReadonlyArray<GraphQLScalarType>;
10
11
-export function isSpecifiedScalarType(type: any): type is GraphQLScalarType;
+export function isSpecifiedScalarType(type: any): boolean;
0 commit comments