From 8ec7c6fb1fc343b7a92a680b58c1046a2adf3d9e Mon Sep 17 00:00:00 2001 From: Paul Vick Date: Thu, 3 Apr 2014 12:14:59 -0700 Subject: [PATCH] Add param to complete() --- jake/jake.d.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/jake/jake.d.ts b/jake/jake.d.ts index 59da4597f..2afaee338 100644 --- a/jake/jake.d.ts +++ b/jake/jake.d.ts @@ -7,8 +7,9 @@ /** * Complets an asynchronous task, allowing Jake's execution to proceed to the next task + * @param value A value to return from the task. */ -declare function complete(): void; +declare function complete(value?: any): void; /** * Creates a description for a Jake Task (or FileTask, DirectoryTask). When invoked, the description that iscreated will be associated with whatever Task is created next.