最佳答案
TypeScript中这些语句(interface vstype)有什么区别?
interface X {a: numberb: string}
type X = {a: numberb: string};