UNPKG

1.69 kBMarkdownView Raw
1# Installation
2> `npm install --save @types/gulp-autoprefixer`
3
4# Summary
5This package contains type definitions for gulp-autoprefixer (https://github.com/sindresorhus/gulp-autoprefixer).
6
7# Details
8Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/gulp-autoprefixer.
9## [index.d.ts](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/gulp-autoprefixer/index.d.ts)
10````ts
11// Type definitions for gulp-autoprefixer
12// Project: https://github.com/sindresorhus/gulp-autoprefixer
13// Definitions by: Asana <https://asana.com>, Jordy van Dortmont <https://github.com/jordyvandortmont>
14// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
15// TypeScript Version: 2.2
16
17/// <reference types="node"/>
18
19
20declare namespace autoPrefixer {
21 interface Options {
22 env?: string | undefined;
23 cascade?: boolean | undefined;
24 add?: boolean | undefined;
25 remove?: boolean | undefined;
26 supports?: boolean | undefined;
27 flexbox?: boolean|"no-2009" | undefined;
28 grid?: false|"autoplace"|"no-autoplace" | undefined;
29 stats?: object | undefined;
30 browsers?: string[] | undefined;
31 ignoreUnknownVersions?: boolean | undefined;
32 }
33}
34
35declare function autoPrefixer(opts?: autoPrefixer.Options): NodeJS.ReadWriteStream;
36
37export = autoPrefixer;
38
39````
40
41### Additional Details
42 * Last updated: Thu, 08 Jul 2021 12:02:33 GMT
43 * Dependencies: [@types/node](https://npmjs.com/package/@types/node)
44 * Global values: none
45
46# Credits
47These definitions were written by [Asana](https://asana.com), and [Jordy van Dortmont](https://github.com/jordyvandortmont).
48
\No newline at end of file