/** * This is based on https://github.com/superhuman/command-score/ * * The only change was removing support for transposed letters. */ declare function commandScore(string: string, abbreviation: string): { score: number; indices: number[]; }; export { commandScore }; //# sourceMappingURL=command-score.d.ts.map