This repository has been archived by the owner on May 19, 2018. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 256
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix export extensions handling of TS declare keyword (#757)
- Loading branch information
1 parent
0fbf3a6
commit 60ea39a
Showing
5 changed files
with
524 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
7 changes: 7 additions & 0 deletions
7
test/fixtures/experimental/export-extensions/export-with-ts/actual.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
export abstract class A {} | ||
export declare interface B {} | ||
export enum C {} | ||
export interface D {} | ||
export module E {} | ||
export namespace F {} | ||
export type G = typeof foo; |
Oops, something went wrong.