这应该有用吗?
interface MyInterface{
}
class MyClass {
DoSomething(callback: (MyInterface[]) => void) {
...
}
}
编译器不喜欢该参数是MyInterface的数组。
答案 0 :(得分:5)
您缺少参数名称:
interface MyInterface{
}
class MyClass {
DoSomething(callback: (arg:MyInterface[]) => void) {
}
}