UNPKG

321 BTypeScriptView Raw
1import { GraphQLSchema } from 'graphql';
2import type { HivePluginOptions } from './types';
3export interface SchemaReporter {
4 report(args: {
5 schema: GraphQLSchema;
6 }): void;
7 dispose(): Promise<void>;
8}
9export declare function createReporting(pluginOptions: HivePluginOptions): SchemaReporter;