Added additional IOptions properties

Properties addSuffix, removeTags, and empty were all missing from the type definition for gulp-inject
This commit is contained in:
James Alexander
2015-10-14 10:49:05 -04:00
parent eab2e0487e
commit cbd5556169

View File

@@ -22,8 +22,11 @@ declare module "gulp-inject" {
ignorePath?: string | string[];
relative?: boolean;
addPrefix?: string;
addSuffix?: string;
addRootSlash?: boolean;
name?: string;
removeTags?: boolean;
empty?: boolean;
starttag?: string | ITagFunction;
endtag?: string | ITagFunction;
transform?: ITransformFunction;