mirror of
https://github.com/wassname/DefinitelyTyped.git
synced 2026-09-10 11:40:16 +08:00
21 lines
575 B
TypeScript
21 lines
575 B
TypeScript
// Type definitions for gulp-autoprefixer
|
|
// Project: https://github.com/sindresorhus/gulp-autoprefixer
|
|
// Definitions by: Asana <https://asana.com>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
|
|
/// <reference path="../node/node.d.ts"/>
|
|
|
|
declare module "gulp-autoprefixer" {
|
|
namespace autoPrefixer {
|
|
interface Options {
|
|
browsers?: string[];
|
|
cascade?: boolean;
|
|
remove?: boolean;
|
|
}
|
|
}
|
|
|
|
function autoPrefixer(opts?: autoPrefixer.Options): NodeJS.ReadWriteStream;
|
|
|
|
export = autoPrefixer;
|
|
}
|