We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
We can emit computed properties class properties, using the following scheme:
class C { ["hello"] = 0; static ["bye"] = 0; }
emits as:
var C = (function() { var __t1 = "hello"; function C() { this[__t1] = 0; } C["bye"] = 0; return C; })();