From 1503788c8ddc432759793d7a765ca8a59471ed6d Mon Sep 17 00:00:00 2001 From: Panu Horsmalahti Date: Thu, 27 Mar 2014 13:09:09 +0200 Subject: [PATCH] Update Q.d.ts Add nfapply defintion. See API reference here: https://github.com/kriskowal/q/wiki/API-Reference --- q/Q.d.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/q/Q.d.ts b/q/Q.d.ts index 85462503a..65b2b8223 100644 --- a/q/Q.d.ts +++ b/q/Q.d.ts @@ -209,6 +209,7 @@ declare module Q { export function nfbind(nodeFunction: Function, ...args: any[]): (...args: any[]) => Promise; export function nfcall(nodeFunction: Function, ...args: any[]): Promise; + export function nfapply(nodeFunction: Function, args: any[]): Promise; export function ninvoke(nodeModule: any, functionName: string, ...args: any[]): Promise; export function nsend(nodeModule: any, functionName: string, ...args: any[]): Promise;