UNPKG

1.11 kBMarkdownView Raw
1# Installation
2> `npm install --save @types/gulp-postcss`
3
4# Summary
5This package contains type definitions for gulp-postcss (https://github.com/postcss/gulp-postcss).
6
7# Details
8Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/gulp-postcss.
9## [index.d.ts](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/gulp-postcss/index.d.ts)
10````ts
11/// <reference types="node"/>
12import Vinyl = require("vinyl");
13
14declare function GulpPostCss(plugins?: any[], options?: GulpPostCss.Options): NodeJS.ReadWriteStream;
15declare function GulpPostCss(
16 callback?: (file: Vinyl) => { plugins?: any[] | undefined; options?: GulpPostCss.Options | undefined },
17): NodeJS.ReadWriteStream;
18
19declare namespace GulpPostCss {
20 interface Options {
21 parser?: any;
22 }
23}
24
25export = GulpPostCss;
26
27````
28
29### Additional Details
30 * Last updated: Tue, 07 Nov 2023 03:09:37 GMT
31 * Dependencies: [@types/node](https://npmjs.com/package/@types/node), [@types/vinyl](https://npmjs.com/package/@types/vinyl)
32
33# Credits
34These definitions were written by .
35
\No newline at end of file