UNPKG

300 BTypeScriptView Raw
1import { PluginConfig } from '../gatsby-node';
2import { GatsbyReporter } from '../types/gatsby';
3interface AstRewriterContext {
4 reporter: GatsbyReporter;
5 config: PluginConfig;
6}
7export declare const rewriteGraphQLSchema: (schemaSdl: string, context: AstRewriterContext) => string;
8export {};