import { GraphQLSchema } from 'graphql'; import { MeshTransform, YamlConfig, MeshTransformOptions } from '@graphql-mesh/types'; export default class MockingTransform implements MeshTransform { private options; constructor(options: MeshTransformOptions); transformSchema(schema: GraphQLSchema): GraphQLSchema; }