const count: number = 2022; count. //count就具有了number的一些特性 point这个变量具备Point的所有属性和变量 interface Point { x: number, y: number } const point: Point = { x: 3, y: 10 }