mirror of
https://github.com/swc-project/swc.git
synced 2024-12-18 19:21:33 +03:00
13 lines
277 B
TypeScript
13 lines
277 B
TypeScript
|
// @module: commonjs
|
||
|
// @target: es6
|
||
|
// @noImplicitAny: false
|
||
|
|
||
|
declare function getSpecifier(): string;
|
||
|
declare var whatToLoad: boolean;
|
||
|
|
||
|
var a = ["./0"];
|
||
|
import(...["PathModule"]);
|
||
|
|
||
|
var p1 = import(...a);
|
||
|
const p2 = import();
|
||
|
const p4 = import("pathToModule", "secondModule");
|