Add param to complete()

This commit is contained in:
Paul Vick
2014-04-03 12:14:59 -07:00
parent 1f368c4187
commit 8ec7c6fb1f
+2 -1
View File
@@ -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.