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