We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
精读 type-challenges Medium 33~40 题。
精读《MinusOne, PickByType, StartsWith...》
The text was updated successfully, but these errors were encountered:
这儿顺序反了
把对象从不可写变成可写: type Readonly<T> = { readonly [K in keyof T]: T[K] } 从可写改成不可写也简单,主要看你是否记住了这个语法:-readonly: // 本题答案 type Mutable<T extends object> = { -readonly [K in keyof T]: T[K] }
Sorry, something went wrong.
感谢指正,已更正
No branches or pull requests
精读 type-challenges Medium 33~40 题。
精读《MinusOne, PickByType, StartsWith...》
The text was updated successfully, but these errors were encountered: