TypeScript currently supports accessor (get/set) properties, but ECMAScript 5 also allows value properties to be defined. <code> Object.defineProperty(o, p, { value: n, enumerable: true, configurable: false }); </code> Will TypeScript be able to implement value properties in future?