We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
대안
The text was updated successfully, but these errors were encountered:
enum A1 { UP, DOWN, LEFT, RIGHT } const A2 = { UP: 1, DOWN: 2, LEFT: 3, RIGHT: 4 } as const enum B1 { UP = "up", DOWN = "down", LEFT = "left", RIGHT = 'right' } const B2 = { UP: "up", DOWN: "down", LEFT: "left", RIGHT: "right" } as const
"use strict"; var A1; (function (A1) { A1[A1["UP"] = 0] = "UP"; A1[A1["DOWN"] = 1] = "DOWN"; A1[A1["LEFT"] = 2] = "LEFT"; A1[A1["RIGHT"] = 3] = "RIGHT"; })(A1 || (A1 = {})); const A2 = { UP: 1, DOWN: 2, LEFT: 3, RIGHT: 4 }; var B1; (function (B1) { B1["UP"] = "up"; B1["DOWN"] = "down"; B1["LEFT"] = "left"; B1["RIGHT"] = "right"; })(B1 || (B1 = {})); const B2 = { UP: "up", DOWN: "down", LEFT: "left", RIGHT: "right" };
Sorry, something went wrong.
youzysu
No branches or pull requests
대안
The text was updated successfully, but these errors were encountered: