From ddc41566fd3829ad33164e0431c36f3157eb1168 Mon Sep 17 00:00:00 2001 From: Andrew Bradley Date: Wed, 10 Dec 2014 15:25:58 -0500 Subject: [PATCH] Fixes bug in grunt definitions Removes `pkg` property from `IProjectConfig` interface (the config object passed to `grunt.initConfig`) because it is not necessary; it is merely a commonly-used convention. --- gruntjs/gruntjs.d.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/gruntjs/gruntjs.d.ts b/gruntjs/gruntjs.d.ts index 8efa08ef6..7de19d016 100644 --- a/gruntjs/gruntjs.d.ts +++ b/gruntjs/gruntjs.d.ts @@ -122,8 +122,7 @@ declare module grunt { * {@link http://gruntjs.com/sample-gruntfile} */ interface IProjectConfig{ - [plugin: string]: any - pkg: any; // unfortunate. It is actually a string + [plugin: string]: any; } /**