Tobi

Results 10 issues of Tobi

```ts type MyExclude = T extends U ? never : T; ```

answer
en
43

```ts type Length = T['length'] ```

answer
en
18

```ts type First = T extends [] ? never : T[0]; ```

answer
en
14

```ts type TupleToObject = { [K in T[number]]: K } ```

answer
en
11

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

answer
7
en

**pinky** https://github.com/user-attachments/assets/bed036ae-0d98-4c75-8f5d-bbd32390899d **misty-slate** https://github.com/user-attachments/assets/ab2bfb01-8625-4ffc-a525-693bdabcdd97

# Migrate JSON schema files to YAML format ## BREAKING CHANGE The JSON schema is now officially discontinued and no longer supported. ## Summary Converted project schema files from JSON...