- document
- DOM
- BOM
- Date
- interface
- Utility Types
https://www.typescriptlang.org/docs/handbook/utility-types.html
ts 在线文档https://ts.xcatliu.com/basics/union-types.htmlantd 下拉搜索https://blog.csdn.net/hs1219462412/article/details/123828052https://blog.csdn.net/liuyuhua666/article/details/103703478x6连接线https://x6.antv.vision/zh/examples/edge/router#orth-verticeshttps://ant-design.antgroup.com/index-cnhttps://zhuanlan.zhihu.com/p/52016989https://github.com/erbing/blog/blob/master/%E5%89%8D%E7%AB%AF%E4%B9%8B%E8%B7%AF%20-%20%E7%AC%AC%E4%B8%89%E7%AB%A0%20-%20React/react-16.0.0.mdhttps://zhuanlan.zhihu.com/p/52016989interface Person {name: string,age: number}const user: Person = { name: 'lucy', age: 20 }type IPartial = Partial<IPerson>const user: IPartial = { name: 'lucy' } // Partial 可选的type IOmit = Omit<Person, 'name'> // 忽略的属性const user2: IOmit = { age: 20 }
