UNPKG

255 BTypeScriptView Raw
1import { GraphQLSchema } from 'graphql';
2import { ActionResult } from './types';
3export declare function diff({ path, schemas, }: {
4 path: string;
5 schemas: {
6 old: GraphQLSchema;
7 new: GraphQLSchema;
8 };
9}): Promise<ActionResult>;