Merge pull request #1979 from panopticoncentral/jake-updates

Add param to complete()
This commit is contained in:
Masahiro Wakame
2014-04-06 11:25:31 +09:00
+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.