@graphql-hive/core
Version:
10 lines • 354 B
TypeScript
import { GraphQLSchema } from 'graphql';
import type { HivePluginOptions } from './types.js';
export interface SchemaReporter {
report(args: {
schema: GraphQLSchema;
}): void;
dispose(): Promise<void>;
}
export declare function createReporting(pluginOptions: HivePluginOptions): SchemaReporter;
//# sourceMappingURL=reporting.d.ts.map