From 3ae7188ebcf3e2f77693edd244c85d23f95ae538 Mon Sep 17 00:00:00 2001 From: YairTawil Date: Mon, 19 Jun 2017 19:47:14 +0300 Subject: [PATCH] Added a necessary exporting to rison --- types/rison/index.d.ts | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/types/rison/index.d.ts b/types/rison/index.d.ts index cfd6089fb6..d175f88832 100644 --- a/types/rison/index.d.ts +++ b/types/rison/index.d.ts @@ -2,7 +2,8 @@ // Project: https://github.com/Nanonid/rison // Definitions by: Andrei Kurosh // Definitions: https://github.com/borisyankov/DefinitelyTyped - +export = rison; +export as namespace rison; declare var rison: IRison; interface IRison { @@ -54,4 +55,4 @@ interface IRison { * @returns {} Resulting array. */ decode_array(encoded: string): T[]; -} \ No newline at end of file +}