0
給定下面的接口。我如何實際執行它?我很難爲函數調用提供正確的語法。實現帶有狀態接口的Typescript函數
export interface IFoo<T> {
(newValue?: T): T;
state: any;
}
給定下面的接口。我如何實際執行它?我很難爲函數調用提供正確的語法。實現帶有狀態接口的Typescript函數
export interface IFoo<T> {
(newValue?: T): T;
state: any;
}
例如:
var tmp: any = function(newValue = 'Hello!') {
return newValue;
}
tmp.state = 123;
var foo: IFoo<string> = tmp;
console.log(foo.state);
console.log(foo());