Skip to content

Commit

Permalink
Add plugin-transform-typescript tests
Browse files Browse the repository at this point in the history
  • Loading branch information
sosukesuzuki committed Sep 30, 2021
1 parent cd5791d commit 15392c3
Show file tree
Hide file tree
Showing 12 changed files with 18 additions and 0 deletions.
@@ -0,0 +1,2 @@
class Foo {}
export { type Foo };
@@ -0,0 +1,3 @@
class Foo {}

export {};
@@ -0,0 +1 @@
export { type A1, type A2 } from "a"
@@ -0,0 +1 @@
export {};
@@ -0,0 +1 @@
export { type A1, type A2, A3 } from "a"
@@ -0,0 +1 @@
export { A3 } from "a";
Expand Up @@ -10,4 +10,6 @@ import "g";
import type H from "h";
import type { I, I2 } from "i";
import type * as J from "j";
import { type K1, type K2 } from "k";
import { type L1, L2, type L3 } from "l";
;
Expand Up @@ -5,4 +5,5 @@ import d, { d2 } from "d";
import e, { e3 as e4 } from "e";
import "f";
import "g";
import { L2 } from "l";
;
@@ -0,0 +1,2 @@
import { Foo1, type Foo2 } from "Foo";
Foo1;
@@ -0,0 +1,2 @@
import { Foo1 } from "Foo";
Foo1;
@@ -0,0 +1 @@
import { type Foo1, type Foo2 } from "Foo";
@@ -0,0 +1 @@
export {};

0 comments on commit 15392c3

Please sign in to comment.