Initial Save
This commit is contained in:
19
node_modules/graphql/validation/rules/KnownDirectives.d.ts
generated
vendored
Normal file
19
node_modules/graphql/validation/rules/KnownDirectives.d.ts
generated
vendored
Normal file
@@ -0,0 +1,19 @@
|
||||
import { ASTVisitor } from '../../language/visitor';
|
||||
import { ValidationContext, SDLValidationContext } from '../ValidationContext';
|
||||
|
||||
export function unknownDirectiveMessage(directiveName: string): string;
|
||||
|
||||
export function misplacedDirectiveMessage(
|
||||
directiveName: string,
|
||||
location: string,
|
||||
): string;
|
||||
|
||||
/**
|
||||
* Known directives
|
||||
*
|
||||
* A GraphQL document is only valid if all `@directives` are known by the
|
||||
* schema and legally positioned.
|
||||
*/
|
||||
export function KnownDirectives(
|
||||
context: ValidationContext | SDLValidationContext,
|
||||
): ASTVisitor;
|
||||
Reference in New Issue
Block a user