Update gruntjs.d.ts

From http://gruntjs.com/api/grunt.task#grunt.task.exists
This commit is contained in:
Sergio Morchón Poveda
2015-02-23 12:47:24 +01:00
parent 2272849a06
commit e3882dcab8

View File

@@ -790,6 +790,12 @@ declare module grunt {
*/
registerMultiTask(taskName: string, taskFunction: Function): void
registerMultiTask(taskName: string, taskDescription: string, taskFunction: Function): void
/**
* Check with the name, if a task exists in the registered tasks.
* @since 0.4.5
*/
exists(name: string): boolean;
}
/**