Merge pull request #27515 from basarat/master

📝 Better description of Pick mapped type
This commit is contained in:
Ryan Cavanaugh 2018-10-03 09:56:20 -07:00 committed by GitHub
commit f53a27eac0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

2
src/lib/es5.d.ts vendored
View file

@ -1410,7 +1410,7 @@ type Readonly<T> = {
};
/**
* From T pick a set of properties K
* From T, pick a set of properties whose keys are in the union K
*/
type Pick<T, K extends keyof T> = {
[P in K]: T[P];