TypeScript/tests/baselines/reference/objectTypeWithOptionalProperty1.js

10 lines
166 B
TypeScript

//// [objectTypeWithOptionalProperty1.ts]
var b = {
x?: 1 // error
}
//// [objectTypeWithOptionalProperty1.js]
var b = {
x: 1 // error
};