Skip to content

Commit

Permalink
Extend the gulp-autoprefixer Options type (#37671)
Browse files Browse the repository at this point in the history
* Extend the gulp-autoprefixer Options type

* Fix TypeScript version
  • Loading branch information
JordyvanDortmont authored and sheetalkamat committed Aug 19, 2019
1 parent d4459b6 commit bd2ed19
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions types/gulp-autoprefixer/index.d.ts
Original file line number Diff line number Diff line change
@@ -1,16 +1,24 @@
// Type definitions for gulp-autoprefixer
// Project: https://github.com/sindresorhus/gulp-autoprefixer
// Definitions by: Asana <https://asana.com>
// Definitions by: Asana <https://asana.com>, Jordy van Dortmont <https://github.com/jordyvandortmont>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
// TypeScript Version: 2.2

/// <reference types="node"/>


declare namespace autoPrefixer {
interface Options {
browsers?: string[];
env?: string;
cascade?: boolean;
add?: boolean;
remove?: boolean;
supports?: boolean;
flexbox?: boolean|"no-2009";
grid?: false|"autoplace"|"no-autoplace";
stats?: object;
browsers?: string[];
ignoreUnknownVersions?: boolean;
}
}

Expand Down

0 comments on commit bd2ed19

Please sign in to comment.