UNPKG

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