Erik Codev

Results 6 issues of Erik Codev

### Check for existing issues - [X] Completed ### Describe the bug / provide steps to reproduce it When I put a closing slash quote in JS/TS (+JSX/TSX) file, I...

defect
typescript
javascript
language

### Describe the bug I specified the notFoundComponent in the root and after I throw a not found error in child route (ex. /$type/$id) I got a warning that telling...

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

answer
en
11

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

answer
7
en

```ts type MyPick = { [Key in K]: T[Key] } ```

answer
4
en

## Context * Telegraf.js Version: 4.16.3 * Node.js Version: 20.9.0 * Operating System: MacOS ## Minimal Example Code Reproducing the Issue ```ts interface BotContext extends Context { customProp: string }...