We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 92dd5bd commit 7cc2487Copy full SHA for 7cc2487
2 files changed
javascript/ql/test/library-tests/UnderlyingTypes/dynamicImportLib.ts
@@ -0,0 +1,4 @@
1
+import * as express from 'express';
2
+
3
+export async function getRequest(): express.Request {
4
+}
javascript/ql/test/library-tests/UnderlyingTypes/dynamicImportUse.ts
+async function t1() {
+ const e = await import('./dynamicImportLib');
+ e.getRequest(); // $ MISSING: hasUnderlyingType='express'.Request
0 commit comments