Skip to content
New issue

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 is skipped during bundling #146

Closed
bradzacher opened this issue Jan 28, 2021 · 2 comments
Closed

export * as NS is skipped during bundling #146

bradzacher opened this issue Jan 28, 2021 · 2 comments

Comments

@bradzacher
Copy link

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)

@timocov
Copy link
Owner

timocov commented Jan 28, 2021

Duplicate of #134

@timocov timocov marked this as a duplicate of #134 Jan 28, 2021
@timocov timocov closed this as completed Jan 28, 2021
@timocov
Copy link
Owner

timocov commented Jan 28, 2021

I think it's pretty similar to #134 (comment)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants