mirror of
https://github.com/wassname/DefinitelyTyped.git
synced 2026-08-20 12:00:53 +08:00
Options should be inside the namespace
This commit is contained in:
+7
-7
@@ -6,15 +6,15 @@
|
||||
/// <reference path="../node/node.d.ts"/>
|
||||
|
||||
declare module "gulp-autoprefixer" {
|
||||
interface Options {
|
||||
browsers?: string[];
|
||||
cascade?: boolean;
|
||||
remove?: boolean;
|
||||
namespace autoPrefixer {
|
||||
interface Options {
|
||||
browsers?: string[];
|
||||
cascade?: boolean;
|
||||
remove?: boolean;
|
||||
}
|
||||
}
|
||||
|
||||
function autoPrefixer(opts?: Options): NodeJS.ReadWriteStream;
|
||||
|
||||
namespace autoPrefixer {}
|
||||
function autoPrefixer(opts?: autoPrefixer.Options): NodeJS.ReadWriteStream;
|
||||
|
||||
export = autoPrefixer;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user