TypeScript 中 interface 和 type 使用区别介绍
interface 和 type 很像,很多场景,两者都能使用。但也有细微的差别:
总的来说,公共的用 interface 实现,不能用 interface 实现的再用 type 实现。是一对互帮互助的好兄弟。