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