type T = {
name?: string;
age: number;
};
const obj: T = {};
When adding a value to obj, when typing the name key, the auto complete opens and includes name?, selecting this option will output name? in the object property identifier.
const obj: T = {
name?: "foo"
};
This does not happen when using ^ space / editor.action.triggerSuggest and selecting the name option from the list.
