Skip to content

Commit 69405fd

Browse files
committed
JS: Another kind of export-assign test
1 parent 88a9a8f commit 69405fd

File tree

2 files changed

+9
-0
lines changed

2 files changed

+9
-0
lines changed
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
import Express = require('express');
2+
namespace Wrapper {
3+
export import E = Express;
4+
}
5+
export = Wrapper;
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
import { E } from "./expressExportAssignWrapper";
2+
3+
function t1(req: E.Request) { // $ hasUnderlyingType='express'.Request
4+
}

0 commit comments

Comments
 (0)