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