From b232a67e3a2f298304c11c56821650e1a6e9d169 Mon Sep 17 00:00:00 2001 From: Andrew Gaspar Date: Thu, 30 May 2013 23:02:58 -0700 Subject: [PATCH] Change module to declare module --- q/q.module.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/q/q.module.d.ts b/q/q.module.d.ts index 6963e47b7..98e1dd9dc 100644 --- a/q/q.module.d.ts +++ b/q/q.module.d.ts @@ -1,6 +1,6 @@ /// -module "q" { +declare module "q" { export function when(value: any, onFulfilled: Function, onRejected?: Function): Qpromise; export function try(method: Function, ...args: any[]): Qpromise; export function fbind(method: Function, ...args: any[]): Qpromise;