UNPKG

934 BTypeScriptView Raw
1// Type definitions for gulp-autoprefixer
2// Project: https://github.com/sindresorhus/gulp-autoprefixer
3// Definitions by: Asana <https://asana.com>, Jordy van Dortmont <https://github.com/jordyvandortmont>
4// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
5// TypeScript Version: 2.2
6
7/// <reference types="node"/>
8
9
10declare namespace autoPrefixer {
11 interface Options {
12 env?: string | undefined;
13 cascade?: boolean | undefined;
14 add?: boolean | undefined;
15 remove?: boolean | undefined;
16 supports?: boolean | undefined;
17 flexbox?: boolean|"no-2009" | undefined;
18 grid?: false|"autoplace"|"no-autoplace" | undefined;
19 stats?: object | undefined;
20 browsers?: string[] | undefined;
21 ignoreUnknownVersions?: boolean | undefined;
22 }
23}
24
25declare function autoPrefixer(opts?: autoPrefixer.Options): NodeJS.ReadWriteStream;
26
27export = autoPrefixer;