12345678910111213141516171819 |
- import type { GraphQLSchemaValidationOptions } from '../type/schema';
- import { GraphQLSchema } from '../type/schema';
- import type { IntrospectionQuery } from './getIntrospectionQuery';
- export declare function buildClientSchema(
- introspection: IntrospectionQuery,
- options?: GraphQLSchemaValidationOptions,
- ): GraphQLSchema;
|