> For the complete documentation index, see [llms.txt](https://mm.ricky.moe/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://mm.ricky.moe/javascript/typescript/shi-yong/pick.md).

# Pick

```javascript
type Pick<T, K extends keyof T> = { [P in K]: T[P] };
```

从 T 中取出 一系列 K 的属性
