UNPKG

481 BTypeScriptView Raw
1import { Location } from '../language/ast';
2import { Source } from '../language/source';
3import { SourceLocation } from '../language/location';
4
5/**
6 * Render a helpful description of the location in the GraphQL Source document.
7 */
8export function printLocation(location: Location): string;
9
10/**
11 * Render a helpful description of the location in the GraphQL Source document.
12 */
13export function printSourceLocation(
14 source: Source,
15 sourceLocation: SourceLocation,
16): string;