UNPKG

436 BTypeScriptView Raw
1import { GraphQLSchema, IntrospectionOptions } from 'graphql';
2import { AsyncExecutor, SyncExecutor } from '@graphql-tools/delegate';
3export declare function introspectSchema(executor: AsyncExecutor, context?: Record<string, any>, options?: IntrospectionOptions): Promise<GraphQLSchema>;
4export declare function introspectSchemaSync(executor: SyncExecutor, context?: Record<string, any>, options?: IntrospectionOptions): GraphQLSchema;