mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-06-28 22:30:01 +00:00
Extend the gulp-autoprefixer Options type (#37671)
* Extend the gulp-autoprefixer Options type * Fix TypeScript version
This commit is contained in:
committed by
Sheetal Nandi
parent
d4459b6afc
commit
bd2ed19428
12
types/gulp-autoprefixer/index.d.ts
vendored
12
types/gulp-autoprefixer/index.d.ts
vendored
@@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user