标签: javascript typescript
是否可以仅在运行时通过接口创建对象实例?
interface IModel { name: string; } function createInstance() { return something to make instance } console.log(createInstance()); // out: {name:null}
答案 0 :(得分:-1)
这是不可能的,因为接口已编译为js