Merge pull request #2104 from borisyankov/def/gruntjs

gruntjs: added node.js support
This commit is contained in:
Basarat Ali Syed
2014-04-26 09:09:40 +10:00

View File

@@ -1293,3 +1293,9 @@ interface IGrunt extends grunt.IConfigComponents, grunt.fail.FailModule, grunt.I
*/
version: string
}
// NodeJS Support
declare module 'grunt' {
var grunt: IGrunt;
export = grunt;
}