TypeScript/tests/cases/fourslash/quickInfoForUMDModuleAlias.ts
Yui ceab31cf0d Port PR #10016 to Master (#10100)
* Treat namespaceExportDeclaration as declaration

* Update baselines

* wip - add tests

* Add tests

* Show "export namespace" for quick-info
2016-08-05 10:12:01 -07:00

17 lines
418 B
TypeScript

/// <reference path='fourslash.ts' />
// @Filename: 0.d.ts
//// export function doThing(): string;
//// export function doTheOtherThing(): void;
//// export as namespace /*0*/myLib;
// @Filename: 1.ts
//// /// <reference path="0.d.ts" />
//// /*1*/myLib.doThing();
goTo.marker("0");
verify.quickInfoIs("export namespace myLib");
goTo.marker("1");
verify.quickInfoIs("export namespace myLib");