TypeScript interface 和type的区别

interface可以扩展,type不可扩展。interface和别的声明合并以后就可能不符合所有字段都是string或者number的约束

 改成type,因为type无法扩展,所以没问题

原文地址:https://www.cnblogs.com/lvhw/p/15103176.html