Update gruntjs.d.ts

Everything in IGruntConfig is optional.
This commit is contained in:
basarat
2013-05-14 21:48:50 +10:00
parent 3de9631e09
commit 690ef70756

View File

@@ -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;};
}
}