Sha256: 5a5406107d9949d83e1225273bcee1f559bb5588942907d923165d83251a0e37
Contents?: true
Size: 382 Bytes
Versions: 26
Compression:
Stored size: 382 Bytes
Contents
import type { DocumentNode } from '../language/ast'; /** * Provided a collection of ASTs, presumably each from different files, * concatenate the ASTs together into batched AST, useful for validating many * GraphQL source files which together represent one conceptual application. */ export declare function concatAST( documents: ReadonlyArray<DocumentNode>, ): DocumentNode;
Version data entries
26 entries across 26 versions & 1 rubygems