UNPKG

190 BTypeScriptView Raw
1import { GraphQLSchema } from 'graphql';
2export declare function getLocation({ path, schema, }: {
3 path: string;
4 schema: GraphQLSchema;
5}): {
6 line: number;
7 column: number;
8};