With ES6 my TS code became in JS something like _Class_private_property.
So I could use __get__() of rewire to get the object.
Now my question if the TS code becomes rewritten to some JS ES2022 and has also Class and #private_property, how do I call __get()__ on it? Is it possible?
With ES6 my TS code became in JS something like
_Class_private_property.So I could use
__get__()of rewire to get the object.Now my question if the TS code becomes rewritten to some JS ES2022 and has also
Classand#private_property, how do I call__get()__on it? Is it possible?