1 | # Installation
|
2 | > `npm install --save @types/gulp-postcss`
|
3 |
|
4 | # Summary
|
5 | This package contains type definitions for gulp-postcss (https://github.com/postcss/gulp-postcss).
|
6 |
|
7 | # Details
|
8 | Files 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"/>
|
12 | import Vinyl = require("vinyl");
|
13 |
|
14 | declare function GulpPostCss(plugins?: any[], options?: GulpPostCss.Options): NodeJS.ReadWriteStream;
|
15 | declare function GulpPostCss(
|
16 | callback?: (file: Vinyl) => { plugins?: any[] | undefined; options?: GulpPostCss.Options | undefined },
|
17 | ): NodeJS.ReadWriteStream;
|
18 |
|
19 | declare namespace GulpPostCss {
|
20 | interface Options {
|
21 | parser?: any;
|
22 | }
|
23 | }
|
24 |
|
25 | export = 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
|
34 | These definitions were written by .
|
35 |
|
\ | No newline at end of file |