mirror of
https://github.com/github/codeql.git
synced 2026-05-04 13:15:21 +02:00
JS: support additional import statements for Flow
This commit is contained in:
@@ -0,0 +1,7 @@
|
||||
declare module "m1" {
|
||||
import {
|
||||
T1,
|
||||
T2
|
||||
} from "m2"
|
||||
}
|
||||
|
||||
@@ -1,2 +1,3 @@
|
||||
import { type, type t1, typeof t2 } from 'm';
|
||||
import { type t } from 'n';
|
||||
import type { t } from 'o';
|
||||
@@ -0,0 +1,11 @@
|
||||
declare module "m1" {
|
||||
import type {
|
||||
T1,
|
||||
T2
|
||||
} from "m2"
|
||||
import typeof {
|
||||
T3,
|
||||
T4
|
||||
} from "m3"
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user