Todor Andonov
Todor Andonov
## 🐛 Bug Report I have this component: ```jsx import React, { useState } from "react"; import { Modal } from "@ui-kitten/components"; import { TouchableWithoutFeedback, View } from "react-native"; function...
Once you use `.extend`, any JSDoc hints are lost. ```ts import { z } from 'zod'; const v1 = z.object({ /** this works */ userId: z.string(), }); const v2 =...
implements https://typescript-eslint.io/rules/consistent-indexed-object-style/
Provide an option to format this: ```ts type Foo = { a: string; b: string; } ``` as: ```ts type Foo = { a: string; b: string; } ```
Hey, I love this plugin. It's so simple, yet effective. Is there a way to enable it for production builds as well? Thanks!
### Description ### Steps to Reproduce I've set up a [codepen](https://codepen.io/todor-a/pen/ZEdxZvK) with the reproduction. ### Expected Behavior All `last` stacks to be rounded. ### Actual Behavior Only the stack that...
Type Error when using `useQueries` with results returning different types, generated from an array
### Describe the bug I want to use `useQueries` to fetch `x` queries every time, and another `y` queries, whose count is not known at compile time. Here is a...