UNPKG

graphql

Version:

A Query Language and Runtime which can target any service.

8 lines (7 loc) 281 B
/** * Given an invalid input string and a list of valid options, returns a filtered * list of valid options sorted based on their similarity with the input. * * @internal */ export declare function suggestionList(input: string, options: ReadonlyArray<string>): Array<string>;