Initial Save
This commit is contained in:
107
node_modules/graphql/language/index.js.flow
generated
vendored
Normal file
107
node_modules/graphql/language/index.js.flow
generated
vendored
Normal file
@@ -0,0 +1,107 @@
|
||||
// @flow strict
|
||||
|
||||
export { Source } from './source';
|
||||
|
||||
export { getLocation } from './location';
|
||||
export type { SourceLocation } from './location';
|
||||
|
||||
export { printLocation, printSourceLocation } from './printLocation';
|
||||
|
||||
export { Kind } from './kinds';
|
||||
export type { KindEnum } from './kinds';
|
||||
|
||||
export { TokenKind } from './tokenKind';
|
||||
export type { TokenKindEnum } from './tokenKind';
|
||||
|
||||
export { createLexer } from './lexer';
|
||||
export type { Lexer } from './lexer';
|
||||
|
||||
export { parse, parseValue, parseType } from './parser';
|
||||
export type { ParseOptions } from './parser';
|
||||
|
||||
export { print } from './printer';
|
||||
|
||||
export {
|
||||
visit,
|
||||
visitInParallel,
|
||||
visitWithTypeInfo,
|
||||
getVisitFn,
|
||||
BREAK,
|
||||
} from './visitor';
|
||||
export type { ASTVisitor, Visitor, VisitFn, VisitorKeyMap } from './visitor';
|
||||
|
||||
export type {
|
||||
Location,
|
||||
Token,
|
||||
ASTNode,
|
||||
ASTKindToNode,
|
||||
// Each kind of AST node
|
||||
NameNode,
|
||||
DocumentNode,
|
||||
DefinitionNode,
|
||||
ExecutableDefinitionNode,
|
||||
OperationDefinitionNode,
|
||||
OperationTypeNode,
|
||||
VariableDefinitionNode,
|
||||
VariableNode,
|
||||
SelectionSetNode,
|
||||
SelectionNode,
|
||||
FieldNode,
|
||||
ArgumentNode,
|
||||
FragmentSpreadNode,
|
||||
InlineFragmentNode,
|
||||
FragmentDefinitionNode,
|
||||
ValueNode,
|
||||
IntValueNode,
|
||||
FloatValueNode,
|
||||
StringValueNode,
|
||||
BooleanValueNode,
|
||||
NullValueNode,
|
||||
EnumValueNode,
|
||||
ListValueNode,
|
||||
ObjectValueNode,
|
||||
ObjectFieldNode,
|
||||
DirectiveNode,
|
||||
TypeNode,
|
||||
NamedTypeNode,
|
||||
ListTypeNode,
|
||||
NonNullTypeNode,
|
||||
TypeSystemDefinitionNode,
|
||||
SchemaDefinitionNode,
|
||||
OperationTypeDefinitionNode,
|
||||
TypeDefinitionNode,
|
||||
ScalarTypeDefinitionNode,
|
||||
ObjectTypeDefinitionNode,
|
||||
FieldDefinitionNode,
|
||||
InputValueDefinitionNode,
|
||||
InterfaceTypeDefinitionNode,
|
||||
UnionTypeDefinitionNode,
|
||||
EnumTypeDefinitionNode,
|
||||
EnumValueDefinitionNode,
|
||||
InputObjectTypeDefinitionNode,
|
||||
DirectiveDefinitionNode,
|
||||
TypeSystemExtensionNode,
|
||||
SchemaExtensionNode,
|
||||
TypeExtensionNode,
|
||||
ScalarTypeExtensionNode,
|
||||
ObjectTypeExtensionNode,
|
||||
InterfaceTypeExtensionNode,
|
||||
UnionTypeExtensionNode,
|
||||
EnumTypeExtensionNode,
|
||||
InputObjectTypeExtensionNode,
|
||||
} from './ast';
|
||||
|
||||
export {
|
||||
isDefinitionNode,
|
||||
isExecutableDefinitionNode,
|
||||
isSelectionNode,
|
||||
isValueNode,
|
||||
isTypeNode,
|
||||
isTypeSystemDefinitionNode,
|
||||
isTypeDefinitionNode,
|
||||
isTypeSystemExtensionNode,
|
||||
isTypeExtensionNode,
|
||||
} from './predicates';
|
||||
|
||||
export { DirectiveLocation } from './directiveLocation';
|
||||
export type { DirectiveLocationEnum } from './directiveLocation';
|
||||
Reference in New Issue
Block a user