TimTsai

Results 13 issues of TimTsai

```ts type MyReadonly ={ readonly [P in keyof T]:T[P] } ```

answer
zh-CN
7

```ts // your answers type MyPick ={ [key in K]: T[key] } ```

answer
4
en

```ts type HelloWorld = string // expected to be a string ``` ```ts import { Equal, Expect, NotAny } from '@type-challenges/utils' type cases = [ Expect, Expect ] ```

answer
zh-CN
13