Files
2026-03-11 10:26:40 -05:00

10 lines
92 B
Markdown

# 类型进阶
## 泛型基础
```ts
function identity<T>(arg: T): T {
return arg
}
```