added empty module to string_score

This commit is contained in:
Marcin Porebski
2015-08-22 14:31:43 +02:00
parent 5b010131f1
commit e78260ef9b

View File

@@ -3,6 +3,11 @@
// Definitions by: Marcin Porębski <https://github.com/marcinporebski/>
// Definitions: https://github.com/borisyankov/DefinitelyTyped
declare module "string_score"
{
// nothing here as it's only extending the build in String class
}
interface String {
score: (word: string, fuzzy?: number) => number;
}