在运行时通过接口创建实例

时间:2017-08-11 15:35:23

标签: javascript typescript

是否可以仅在运行时通过接口创建对象实例?

interface IModel {
    name: string;
}


function createInstance() {
    return something to make instance 
}

console.log(createInstance()); // out: {name:null}

1 个答案:

答案 0 :(得分:-1)

这是不可能的,因为接口已编译为js