
typescript
M_Eve
这个作者很懒,什么都没留下…
展开
-
Typescript 学习笔记(二)— 泛型
什么是泛型,泛型的具体使用 定义:定义函数、接口或类时,不预先指定类型,使用时再指定 使用interfact Test<T = any> { userId: T; } type TestA = Test<string>; type TestB = Test<number>; const a: TestA = { userId: '111' } const b: TestB = { userId: 222 } ...原创 2021-08-24 08:40:42 · 369 阅读 · 0 评论 -
Typescript 学习笔记(一)— 基础知识
Typescript 学习笔记(一)基础知识 基础知识 enum 枚举 enum Color {Red = 1, Green, Blue} type, interface 联合类型 | 交叉类型 & typeof 获取一个变量声明或对象的类型 keyof 获取一个对象中的所有 key 值interface Person { name: string; age: number; } type K1 = keyof Person; // "name" | "age" in 遍历原创 2021-08-23 22:43:35 · 170 阅读 · 0 评论