标签: javascript typescript
我都尝试过它们,它们也都适用于类型和接口。
// Types type TA { a: string, aa: number } type TB { b: string; bb: number; } // Interfaces interface IA { a: string, aa: number } interface IB { b: string; bb: number; }
,和;之间有什么区别,我应该选择哪一个?
,
;