mirror of
https://github.com/swc-project/swc.git
synced 2024-12-19 11:42:13 +03:00
11 lines
243 B
TypeScript
11 lines
243 B
TypeScript
|
// @Filename: declarations1.d.ts
|
||
|
declare module "foo";
|
||
|
|
||
|
// @Filename: declarations2.d.ts
|
||
|
declare module "foo";
|
||
|
|
||
|
// @Filename: user.ts
|
||
|
///<reference path="declarations1.d.ts" />
|
||
|
///<reference path="declarations1.d.ts" />
|
||
|
import foo from "foo";
|