diff --git a/string_score/string_score.d.ts b/string_score/string_score.d.ts index 5e3ee05d5..6b3944c4e 100644 --- a/string_score/string_score.d.ts +++ b/string_score/string_score.d.ts @@ -3,6 +3,11 @@ // Definitions by: Marcin Porębski // 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; }