aboutsummaryrefslogblamecommitdiffstats
path: root/vendor/github.com/graphql-go/graphql/language/typeInfo/type_info.go
blob: e012ee02799f40aee9800c14ef229a3c33fae38e (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11










                                                              
package typeInfo

import (
	"github.com/graphql-go/graphql/language/ast"
)

// TypeInfoI defines the interface for TypeInfo Implementation
type TypeInfoI interface {
	Enter(node ast.Node)
	Leave(node ast.Node)
}