UNPKG

core-types-graphql

Version:
7 lines (6 loc) 259 B
import type { LocationWithLineColumn } from 'core-types'; export interface GqlLocation { line: number; column: number; } export declare function gqlLocationsToCoreTypesLocation(source: string, loc: ReadonlyArray<GqlLocation>): LocationWithLineColumn;