From e78260ef9b39498a6a1bb513eeb4e0ba37203c25 Mon Sep 17 00:00:00 2001 From: Marcin Porebski Date: Sat, 22 Aug 2015 14:31:43 +0200 Subject: [PATCH] added empty module to string_score --- string_score/string_score.d.ts | 5 +++++ 1 file changed, 5 insertions(+) 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; }