Skip to main content
Module

x/graphql_deno/lib/language/printer.d.ts

GraphQL-JS ported to Deno
Latest
File
import { ASTNode } from './ast.d.ts';
/** * Converts an AST into a string, using one set of reasonable * formatting rules. */export function print(ast: ASTNode): string;