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