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.
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
"rename namespace const enum","const enum in namespace"
https://www.typescriptlang.org/play/?#code/PTAECcFMDsEMFtKgC4AsCWBnUdGYA6wDGkAULpAcUspcqAN6miiQAe+A9uPUZ9JnowArvFABRRsxagAgqAC8oAOSxl0gL6ktpPgPqwAXCjoA6SUtqDzp2QG4gA
// rename this namespace namespace test { export const enum E { A = 'a' } } const a: test.E = test.E.A;
Rename test to test1 via "Rename Symbol" or "F2".
test
test1
// rename this namespace namespace test1 { export const enum E { A = 'a' } } const a: test1.E = test.E.A; // this value remains unchanged
// rename this namespace namespace test1 { export const enum E { A = 'a' } } const a: test1.E = test1.E.A;
No response
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
π Search Terms
"rename namespace const enum","const enum in namespace"
π Version & Regression Information
β― Playground Link
https://www.typescriptlang.org/play/?#code/PTAECcFMDsEMFtKgC4AsCWBnUdGYA6wDGkAULpAcUspcqAN6miiQAe+A9uPUZ9JnowArvFABRRsxagAgqAC8oAOSxl0gL6ktpPgPqwAXCjoA6SUtqDzp2QG4gA
π» Code
π Actual behavior
Rename
test
totest1
via "Rename Symbol" or "F2".π Expected behavior
Additional information about the issue
No response
The text was updated successfully, but these errors were encountered: