Change the export case to be more semantically correct

This commit is contained in:
Romain Faust 2018-08-23 19:00:07 +02:00
parent c966aca3bd
commit 6013bd6f9d

View File

@ -7,12 +7,12 @@
import { Transform } from 'stream';
declare function GulpJsonmin(options?: GulpJsonmin.Options): Transform;
declare function gulpJsonmin(options?: gulpJsonmin.Options): Transform;
declare namespace GulpJsonmin {
declare namespace gulpJsonmin {
interface Options {
verbose?: boolean;
}
}
export = GulpJsonmin;
export = gulpJsonmin;