UNPKG

graphql

Version:

A Query Language and Runtime which can target any service.

17 lines (14 loc) 481 B
import { Location } from '../language/ast'; import { Source } from '../language/source'; import { SourceLocation } from '../language/location'; /** * Render a helpful description of the location in the GraphQL Source document. */ export function printLocation(location: Location): string; /** * Render a helpful description of the location in the GraphQL Source document. */ export function printSourceLocation( source: Source, sourceLocation: SourceLocation, ): string;