We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
consider this basic code:
type SomeType = { prop1: string; prop2: string; } type SomeOtherType = { prop3: string; prop4: string; } type AnySomeType = SomeType | SomeOtherType export class SomeClass<T extends AnySomeType> { constructor([model, customProp]: [T, string]) { Object.assign(this, model); Object.assign(this, customProp); } } const yo = new SomeClass<SomeType>([{ prop1: '', prop2: '' }, 'thisIsCustom'])
Upon inspecting the const yo The explorer errors with "cannot read property of undefined (reading 'name')"
yo
TS version: 5.2.2 Node version: 18.12.1 VS Code version: 1.92.2 OS: macOS Sonoma 14.6.1 TypeScript Explorer version: v0.4.2
The text was updated successfully, but these errors were encountered:
No branches or pull requests
consider this basic code:
Upon inspecting the const
yo
The explorer errors with "cannot read property of undefined (reading 'name')"TS version: 5.2.2
Node version: 18.12.1
VS Code version: 1.92.2
OS: macOS Sonoma 14.6.1
TypeScript Explorer version: v0.4.2
The text was updated successfully, but these errors were encountered: