Closed
Description
π Search Terms
ambient context, declare namespace, using, await using
π Version & Regression Information
- This is the behavior in every version I tried
β― Playground Link
π» Code
declare namespace Validation {
using a: any;
}
π Actual behavior
In the generated dts, a
becomes a const
declarator:
declare namespace Validation {
const a: any;
}
π Expected behavior
The generated dts should be the same as the input
declare namespace Validation {
using a: any;
}
Additional information about the issue
No response