From 690ef707564d0a53be9444e3fff177c04d26836f Mon Sep 17 00:00:00 2001 From: basarat Date: Tue, 14 May 2013 21:48:50 +1000 Subject: [PATCH] Update gruntjs.d.ts Everything in IGruntConfig is optional. --- gruntjs/gruntjs.d.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gruntjs/gruntjs.d.ts b/gruntjs/gruntjs.d.ts index 5ff8eab9f..2e24ff033 100644 --- a/gruntjs/gruntjs.d.ts +++ b/gruntjs/gruntjs.d.ts @@ -8,7 +8,7 @@ /// To add plugins update the IGruntConfig using open ended interface syntax //////////////// interface IGruntConfig{ - pkg: any; + pkg?: any; } //////////////// @@ -162,4 +162,4 @@ interface IGruntFileObject{ //////////////// declare var module : { exports: {(grunt: IGrunt): void;}; -} \ No newline at end of file +}