Change module to declare module

This commit is contained in:
Andrew Gaspar
2013-05-30 23:02:58 -07:00
parent 5055ef38f4
commit b232a67e3a
+1 -1
View File
@@ -1,6 +1,6 @@
/// <reference path="Q.d.ts" />
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;