UNPKG

267 BTypeScriptView Raw
1import { GraphQLSchema } from 'graphql';
2import { BestMatch } from '../utils/string';
3export interface SimilarMap {
4 [name: string]: BestMatch;
5}
6export declare function similar(schema: GraphQLSchema, typeName: string | undefined, threshold?: number): SimilarMap;