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

Support for “export default from” and “export ns from” proposals #9906

Closed
calebmer opened this issue Jul 22, 2016 · 1 comment
Closed
Labels
Duplicate An existing issue was already created

Comments

@calebmer
Copy link

Is it on the TypeScript roadmap to support the export default from and export namespace from proposals? This makes working with default exports much easier. Currently this needs to be done to export a bunch of defaults as named exports:

import a from 'a'
import b from 'b'
import c from 'c'

export {
  a,
  b,
  c,
}

By implementing these proposals the above goes to:

export a from 'a'
export b from 'b'
export c from 'c'

These proposals make import/export semantics symmetrical.

@mhegazy
Copy link
Contributor

mhegazy commented Jul 22, 2016

should be covered by the proposal in #4813

@mhegazy mhegazy added the Duplicate An existing issue was already created label Jul 22, 2016
@mhegazy mhegazy closed this as completed Sep 20, 2016
paranoidjk added a commit to react-component/swipeout that referenced this issue Jun 12, 2018
@microsoft microsoft locked and limited conversation to collaborators Jun 19, 2018
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
Duplicate An existing issue was already created
Projects
None yet
Development

No branches or pull requests

2 participants