我想使用内联样式前缀,如:
var InlineStylePrefixer = require('inline-style-prefixer');
...
var prefixer = new InlineStylePrefixer(userAgent);
...
var _style = InlineStylePrefixer.prefixAll(style);
如何在声明模块中导出构造函数?
declare module "inline-style-prefixer"{
export function InlineStylePrefixer(useagent:string):void; // error
export function prefixAll(style:Object):Object;
}
Louay Alakka.. 11
你会做两个/三个声明:
declare class InlineStylePrefixer { constructor(useagent: string) {} } declare module InlineStylePrefixer { export function prefixAll(style: Object): Object; } declare module "inline-style-prefixer" { export = InlineStylePrefixer; }
当您有一个类和一个具有相同名称的模块时,该模块将与该类合并.
你会做两个/三个声明:
declare class InlineStylePrefixer { constructor(useagent: string) {} } declare module InlineStylePrefixer { export function prefixAll(style: Object): Object; } declare module "inline-style-prefixer" { export = InlineStylePrefixer; }
当您有一个类和一个具有相同名称的模块时,该模块将与该类合并.