mirror of
https://github.com/microsoft/TypeScript.git
synced 2026-05-16 07:13:45 -05:00
Do not add reexported names to the exportSpecifiers list of moduleinfo (#39213)
This commit is contained in:
9
tests/cases/compiler/reexportNameAliasedAndHoisted.ts
Normal file
9
tests/cases/compiler/reexportNameAliasedAndHoisted.ts
Normal 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' };
|
||||
}
|
||||
Reference in New Issue
Block a user