This commit is contained in:
eric
2026-03-11 10:26:40 -05:00
parent 4c041d939a
commit 8cbc092437
71 changed files with 13541 additions and 92 deletions

View File

@@ -0,0 +1,9 @@
# 类型进阶
## 泛型基础
```ts
function identity<T>(arg: T): T {
return arg
}
```