Fix gruntjs typings: Add grunt.config.merge method

This commit is contained in:
Maxime LUCE
2015-10-22 03:27:37 +02:00
parent 98a9440752
commit ebfb1064b1
+6
View File
@@ -192,6 +192,12 @@ declare module grunt {
*/
requires(prop: string, ...andProps: string[]): void
requires(prop: string[], ...andProps: string[][]): void
/**
* Recursively merges properties of the specified configObject into the current project configuration.
* You can use this method to append configuration options, targets, etc., to already defined tasks.
*/
merge<T>(configObject: T): void;
}
}