Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

myReadonly #340

Open
FailurMan opened this issue Dec 30, 2022 · 1 comment
Open

myReadonly #340

FailurMan opened this issue Dec 30, 2022 · 1 comment

Comments

@FailurMan
Copy link
Contributor

FailurMan commented Dec 30, 2022

//使用ts实现获取readonly方法
type MyReadonly<T> = {
  readonly [P in keyof T]: T[P];
};
@FailurMan FailurMan changed the title 实现myReadonly myReadonly Dec 30, 2022
@jianxingyao
Copy link

type MyReadonly<T extends Record<string, any>> = {
readonly [K in keyof T]:T[K]
}

# for free to join this conversation on GitHub. Already have an account? # to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants