标签: javascript typescript kotlin
我可以在TypeScript中指定它(因此可以在JavaScript中完成):
interface Foo { (arg: any): void foo: string }
在Kotlin可以实现同样的目标吗?
答案 0 :(得分:2)
这也可以用Kotlin表达:
interface Foo { fun funX(arg: Any): Unit val foo: String }
Properties in Interfaces