André Gomes

Results 6 issues of André Gomes

Hi, First of all really nice what you've done. i have a suggestion for a feature / improvement. We could add `...props` to item to allow us to pass custom...

```ts type First = T extends [infer U, ...infer _] ? T[0] : never ```

answer
en
14

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

answer
en
11

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

answer
7
en

```ts type MyPick = Record ```

answer
4
en

```ts type HelloWorld = string ```

answer
en
13