Do not add reexported names to the exportSpecifiers list of moduleinfo (#39213)

This commit is contained in:
Wesley Wigham
2020-06-23 17:56:44 -07:00
committed by GitHub
parent 5d9b7855c7
commit 7893c9fc7e
5 changed files with 92 additions and 3 deletions

View File

@@ -0,0 +1,9 @@
// @filename: gridview.ts
export type Sizing = any;
export const Sizing = null;
// @filename: index.ts
// https://github.com/microsoft/TypeScript/issues/39195
export { Sizing as GridViewSizing } from './gridview';
export namespace Sizing {
export const Distribute = { type: 'distribute' };
}