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
export * as NS
Bug report
Input code
// file1 export interface Foo {} export interface Bar {} // file2 export * as Test from './file1';
Expected output
export declare namespace Test { export interface Foo {} export interface Bar {} }
Actual output
export {};
Additional context Add any other context about the problem here (CLI options, etc)
The text was updated successfully, but these errors were encountered:
Duplicate of #134
Sorry, something went wrong.
I think it's pretty similar to #134 (comment)
import * as NS
NS
No branches or pull requests
Bug report
Input code
Expected output
Actual output
Additional context
Add any other context about the problem here (CLI options, etc)
The text was updated successfully, but these errors were encountered: