From f37d692cb10eef13cbb2dc5a2381ebca2e7b10c7 Mon Sep 17 00:00:00 2001 From: TokugawaTakesi Date: Wed, 10 Apr 2019 11:00:42 +0900 Subject: [PATCH] mistake found and fixed --- types/gulp-postcss/index.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types/gulp-postcss/index.d.ts b/types/gulp-postcss/index.d.ts index ab5027c396..8da43d1b15 100644 --- a/types/gulp-postcss/index.d.ts +++ b/types/gulp-postcss/index.d.ts @@ -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 {