mistake found and fixed

This commit is contained in:
TokugawaTakesi 2019-04-10 11:00:42 +09:00
parent 805bc861a6
commit f37d692cb1

View File

@ -8,7 +8,7 @@
import Vinyl = require('vinyl');
declare function GulpPostCss(plugins?: any[], options?: GulpPostCss.Options): NodeJS.ReadWriteStream;
declare function GulpPostCss(callback?: (file: Vinyl) => { plugins?: string[], options?: GulpPostCss.Options }):
declare function GulpPostCss(callback?: (file: Vinyl) => { plugins?: any[], options?: GulpPostCss.Options }):
NodeJS.ReadWriteStream;
declare namespace GulpPostCss {