mirror of
https://github.com/swc-project/swc.git
synced 2024-12-18 19:21:33 +03:00
12 lines
263 B
TypeScript
12 lines
263 B
TypeScript
// @target: esnext
|
|
// @module: commonjs
|
|
// @lib: esnext
|
|
// @declaration: true
|
|
// @filename: file1.ts
|
|
/// <reference lib="dom" />
|
|
export declare const elem: HTMLElement;
|
|
|
|
// @filename: file2.ts
|
|
/// <reference lib="dom" />
|
|
export {}
|
|
declare const elem: HTMLElement; |