Dimava

Results 46 comments of Dimava

I have a bit different proposal How about making color not color of wire itself, but color of **wire holder** or wire aura? Then the color of wire itself may...

```ts class MatrixExt extends Matrix { mapColumns(fun: (column: number[], rowIndex: number, matrix: this) => number | number[]): Matrix { const n = this.columns; const result = Array(); for (let i...

I think both the Readme and this issue title are badly worded > JSDoc support The thing @richardwillars is contextual information about types/variables/arguments written in so-calles "JSDoc comments", `/** comment...

If `tsx watch --inspect src/index.ts` does not work for you, try running `tsx watch --inspect src/index.ts asd` Watch seems to be failing with one node arg, I guess because arg...

I came here looking for solution, albeit I'm using Vite, not Webpack. In the case someone comes with the same question, here's the solution: - `vue` -> `ts` type imports...

It's easier to split the function into overloads first and then extract returns/parameters https://tsplay.dev/wR025m ```ts function fn5(a: boolean): boolean; function fn5(a: string): string; function fn5(a: number): number; function fn5(a: null):...

Solvability proof: ```ts type A = { a: 1 } type B = { b: 1 } type TryDiffer2 = [ [ T extends C ? 1 : 0, C...

![image](https://github.com/eslint-stylistic/eslint-stylistic/assets/20068737/5adfb12b-2fc4-4293-911b-b768933bdff0) ![image](https://github.com/eslint-stylistic/eslint-stylistic/assets/20068737/325ddbf3-bf0a-417e-96c0-9afec55a2400)