From ffaaf5d5d5b8a0c79e00c173b1168757a8442b34 Mon Sep 17 00:00:00 2001 From: Troy McKinnon Date: Thu, 31 Mar 2016 19:45:21 -0500 Subject: [PATCH] allow importing raphael as a module --- raphael/raphael.d.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/raphael/raphael.d.ts b/raphael/raphael.d.ts index 54cdc3514..fe5778ff4 100644 --- a/raphael/raphael.d.ts +++ b/raphael/raphael.d.ts @@ -294,3 +294,6 @@ interface RaphaelStatic { } declare var Raphael: RaphaelStatic; +declare module "raphael" { + export = Raphael; +}