File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -11,13 +11,13 @@ import { exportstar } from "./reexport";
11
11
export { exportstar } ;
12
12
13
13
import * as ReexportsNamespace from "./reexport" ;
14
- // Test our import * as namespace works with different types
14
+ // Test our import * as namespace works with different types.
15
15
assert ( ReexportsNamespace . add ( 2 , 2 ) == 4 ) ;
16
16
assert ( ReexportsNamespace . rerenamed_mul ( 2 , 2 ) == 4 ) ;
17
17
let car : ReexportsNamespace . Car = new ReexportsNamespace . Car ( ) ;
18
18
assert ( car . numDoors == 2 ) ;
19
19
20
- // Test our imported namespace with the exported import * as namespace
20
+ // Test our imported namespace with the exported import * as namespace.
21
21
assert ( ReexportsNamespace . ExportsNamespace . add ( 2 , 2 ) == 4 ) ;
22
22
assert ( ReexportsNamespace . ExportsNamespace . renamed_mul ( 2 , 2 ) == 4 ) ;
23
23
let exportsNamespaceCar : ReexportsNamespace . Car = new ReexportsNamespace . ExportsNamespace . Car ( ) ;
You can’t perform that action at this time.
0 commit comments