swc/crates/swc_ecma_parser/tests/tsc/libReferenceDeclarationEmitBundle.ts
2022-02-04 17:08:38 +09:00

13 lines
281 B
TypeScript

// @target: esnext
// @module: amd
// @lib: esnext
// @declaration: true
// @outFile: bundle.js
// @filename: file1.ts
/// <reference lib="dom" />
export declare const elem: HTMLElement;
// @filename: file2.ts
/// <reference lib="dom" />
export {}
declare const elem: HTMLElement;