Is there a way to emulate Object.defineProperties from JavaScript in Typescript? I am interested in achieving something similar using the syntax of Typescript:
Object.defineProperties(someObject.prototype,
{
property: {get: function() { return value; } },
anotherProperty {get: function() { return somethingElse; } }
});
Any advice or guidance on how to accomplish this? Thank you!