有没有办法处理类型脚本声明文件(如类)中的接口或变量,以便能够从中扩展类?
像这样:
declare module "tedious" {
import events = module('events');
export class Request extends event.EventEmitter {
constructor (sql: string, callback: Function);
addParameter(name: string, type: any, value: string):any;
addOutputParameter(name: string, type: any): any;
sql:string;
callback: Function;
};
}
现在我必须像这样重新定义EventEmitter接口并使用我自己的EventEmitter声明。
import events = module('events');
class EventEmitter implements events.NodeEventEmitter{
addListener(event: string, listener: Function);
on(event: string, listener: Function): any;
once(event: string, listener: Function): void;
removeListener(event: string, listener: Function): void;
removeAllListener(event: string): void;
setMaxListeners(n: number): void;
listeners(event: string): { Function; }[];
emit(event: string, arg1?: any, arg2?: any): void;
}
export class Request extends EventEmitter {
constructor (sql: string, callback: Function);
addParameter(name: string, type: any, value: string):any;
addOutputParameter(name: string, type: any): any;
sql:string;
callback: Function;
};
稍后在我的TypeScript文件中扩展它
import tedious = module('tedious');
class Request extends tedious.Request {
private _myVar:string;
constructor(sql: string, callback: Function){
super(sql, callback);
}
}
答案 0 :(得分:2)
我在2013年不知道,但现在很容易:
/// <reference path="../typings/node/node.d.ts" />
import * as events from "events";
class foo extends events.EventEmitter {
constructor() {
super();
}
someFunc() {
this.emit('doorbell');
}
}
我一直在寻找答案,最后想出来了。
答案 1 :(得分:1)
应该可以正常工作,例如:
// Code in a abc.d.ts
declare module "tedious" {
export class Request {
constructor (sql: string, callback: Function);
addParameter(name: string, type: any, value: string):any;
addOutputParameter(name: string, type: any): any;
sql:string;
callback: Function;
};
}
// Your code:
///<reference path='abc.d.ts'/>
import tedious = module('tedious');
class Request extends tedious.Request {
private _myVar:string;
constructor(sql: string, callback: Function){
super(sql, callback);
}
}
您放入文件的任何内容都可以放入.d.ts文件中。