UNPKG

451 BTypeScriptView Raw
1import { Location } from './ast';
2import { Source } from './source';
3import { SourceLocation } from './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;