TypeScript/tests/cases/conformance/declarationEmit/libReferenceDeclarationEmitBundle.ts

13 lines
293 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;