Clean up types in build/lib/optimize.ts

This commit is contained in:
Alex Dima
2016-10-20 14:16:57 +02:00
parent d904442b42
commit abce9969fe
12 changed files with 1007 additions and 99 deletions

12
build/lib/typings/gulp-cssnano.d.ts vendored Normal file
View File

@@ -0,0 +1,12 @@
declare module "gulp-cssnano" {
function f(opts:{reduceIdents:boolean;}): NodeJS.ReadWriteStream;
/**
* This is required as per:
* https://github.com/Microsoft/TypeScript/issues/5073
*/
namespace f {}
export = f;
}