Suggestion
🔍 Search Terms
quickfix, properties, jsx, literal
✅ Viability Checklist
My suggestion meets these guidelines:
⭐ Suggestion
We have:
{} is missing the following properties from type {} and {} more.
It's helpful to add all missing attributes/properties by quickfix. the default value could be null/undefined/zero-value/etc.
📃 Motivating Example
interface Foo {
a: string
b: number
}
const f: Foo = {}
--------------------------------
^ missing a, b
-------------------------------
To:
interface Foo {
a: string
b: number
}
const f: Foo = {
a: undefined,
b: undefined
}
💻 Use Cases
Suggestion
🔍 Search Terms
quickfix, properties, jsx, literal
✅ Viability Checklist
My suggestion meets these guidelines:
⭐ Suggestion
We have:
It's helpful to add all missing attributes/properties by quickfix. the default value could be null/undefined/zero-value/etc.
📃 Motivating Example
To:
💻 Use Cases