UNPKG

441 BTypeScriptView Raw
1/// <reference types="node"/>
2import Vinyl = require("vinyl");
3
4declare function GulpPostCss(plugins?: any[], options?: GulpPostCss.Options): NodeJS.ReadWriteStream;
5declare function GulpPostCss(
6 callback?: (file: Vinyl) => { plugins?: any[] | undefined; options?: GulpPostCss.Options | undefined },
7): NodeJS.ReadWriteStream;
8
9declare namespace GulpPostCss {
10 interface Options {
11 parser?: any;
12 }
13}
14
15export = GulpPostCss;