-
Notifications
You must be signed in to change notification settings - Fork 0
/
7-readonly.ts
63 lines (47 loc) · 1.39 KB
/
7-readonly.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
/*
7 - 实现 Readonly
-------
by Anthony Fu (@antfu) #简单 #built-in #readonly #object-keys
### 题目
> 欢迎 PR 改进翻译质量。
不要使用内置的`Readonly<T>`,自己实现一个。
该 `Readonly` 会接收一个 _泛型参数_,并返回一个完全一样的类型,只是所有属性都会被 `readonly` 所修饰。
也就是不可以再对该对象的属性赋值。
例如:
```ts
interface Todo {
title: string
description: string
}
const todo: MyReadonly<Todo> = {
title: "Hey",
description: "foobar"
}
todo.title = "Hello" // Error: cannot reassign a readonly property
todo.description = "barFoo" // Error: cannot reassign a readonly property
```
> 在 Github 上查看:https://tsch.js.org/7/zh-CN
*/
/* _____________ 你的代码 _____________ */
type MyReadonly<T> = {
readonly [key in keyof T]: T[key];
}
/* _____________ 测试用例 _____________ */
import type { Equal, Expect } from '@type-challenges/utils'
type cases = [
Expect<Equal<MyReadonly<Todo1>, Readonly<Todo1>>>,
]
interface Todo1 {
title: string
description: string
completed: boolean
meta: {
author: string
}
}
/* _____________ 下一步 _____________ */
/*
> 分享你的解答:https://tsch.js.org/7/answer/zh-CN
> 查看解答:https://tsch.js.org/7/solutions
> 更多题目:https://tsch.js.org/zh-CN
*/