From 87e0cf355331f726ee0169aabdaaef8754d3d83f Mon Sep 17 00:00:00 2001 From: Basarat Ali Syed Date: Sat, 26 Apr 2014 09:07:07 +1000 Subject: [PATCH] Update gruntjs.d.ts --- gruntjs/gruntjs.d.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gruntjs/gruntjs.d.ts b/gruntjs/gruntjs.d.ts index fb971a0997..2bf0d91b47 100644 --- a/gruntjs/gruntjs.d.ts +++ b/gruntjs/gruntjs.d.ts @@ -1296,5 +1296,6 @@ interface IGrunt extends grunt.IConfigComponents, grunt.fail.FailModule, grunt.I // NodeJS Support declare module 'grunt' { - export = IGrunt; + var grunt: IGrunt; + export = grunt; }