const count: number = 2022;
    
    count. //count就具有了number的一些特性
    

    截屏2020-12-16上午10.35.47.png

    point这个变量具备Point的所有属性和变量

    interface Point {
      x: number,
      y: number
    }
    
    const point: Point = {
      x: 3,
      y: 10
    }