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

Add export interface Flow syntax support to Babel 6.x #3236

Merged
merged 2 commits into from
Jan 6, 2016

Conversation

samwgoldman
Copy link
Contributor

An interface export is just like a type export. In fact, it's a syntax affordance which makes the following equivalent:

interface I_ { ... }
export type I = I_;
export interface I { ... }

See facebook/flow#1145

Will backport to Babel 5.x if this looks good.

An interface export is just like a type export. In fact, it's a syntax affordance which makes the following equivalent:

```javascript
interface I_ { ... }
export type I = I_;
```

```javascript
export interface I { ... }
```

See facebook/flow#1145
@codecov-io
Copy link

Current coverage is 84.95%

Merging #3236 into master will decrease coverage by -0.21% as of aeeffe5

@@            master   #3236   diff @@
======================================
  Files          215     215       
  Stmts        15684   15689     +5
  Branches      3355    3356     +1
  Methods          0       0       
======================================
- Hit          13358   13329    -29
- Partial        677     710    +33
- Missed        1649    1650     +1

Review entire Coverage Diff as of aeeffe5

Powered by Codecov. Updated on successful CI builds.

@amasad
Copy link
Member

amasad commented Jan 6, 2016

LGTM

samwgoldman added a commit to samwgoldman/babel that referenced this pull request Jan 6, 2016
hzoo added a commit that referenced this pull request Jan 6, 2016
Add `export interface` Flow syntax support to Babel 6.x
@hzoo hzoo merged commit d9e453f into babel:master Jan 6, 2016
@lock lock bot added the outdated A closed issue/PR that is archived due to age. Recommended to make a new issue label Oct 7, 2019
@lock lock bot locked as resolved and limited conversation to collaborators Oct 7, 2019
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
outdated A closed issue/PR that is archived due to age. Recommended to make a new issue
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants