mattpocock / ts-error-translator

VSCode extension to turn TypeScript errors into plain English
https://ts-error-translator.vercel.app
2.36k stars 90 forks source link

Translation request for 2392 #244

Open kashanzaheerkhan-cyber opened 8 months ago

kashanzaheerkhan-cyber commented 8 months ago

Error Text

Multiple constructor implementations are not allowed.

Supporting Information

class MyClass { a: number b: number

constructor() {}

constructor(a, b) { this.a = a this.b = b } Sum = (a, b) => { const c = 10 return a + b + c } }

Please provide other information which led to this error, and any specific questions you have about it: