UNPKG

381 BTypeScriptView Raw
1import { GraphQLSchema } from 'graphql';
2import { YamlConfig, MeshTransform, MeshTransformOptions } from '@graphql-mesh/types';
3export default class SnapshotTransform implements MeshTransform {
4 private options;
5 noWrap: boolean;
6 constructor(options: MeshTransformOptions<YamlConfig.SnapshotTransformConfig>);
7 transformSchema(schema: GraphQLSchema): GraphQLSchema;
8}