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.
I want symbol enum.
syntax example:
symbol enum Example{ X,Y,Z }
↓
var Example; (function (Example) { Example[Example["X"] = new Symbol("X")] = "X"; Example[Example["Y"] = new Symbol("Y")] = "Y"; Example[Example["Z"] = new Symbol("Z")] = "Z"; })(Example || (Example = {}));