## 获取类上的属性的类型 ```typescript class A{ n: number } const num: A['n'] // number ```
获取类上的属性的类型