-
Notifications
You must be signed in to change notification settings - Fork 13k
Closed
Labels
Working as IntendedThe behavior described is the intended behavior; this is not a bugThe behavior described is the intended behavior; this is not a bug
Description
TypeScript Version: Microsoft.TypeScript.MSBuild 2.4.1
Code
/// <amd-module name="foo" />
export class Bar { ... }
Expected behavior:
I would expect my explicit module name to be preserved in the output .d.ts file:
declare module "foo" {
export class Bar { ... }
}
Actual behavior:
The explictly-specified module name seems to be ignored completely:
export declare class Bar { ... }
sgjoy1, SIRHAMY and kevwang29
Metadata
Metadata
Assignees
Labels
Working as IntendedThe behavior described is the intended behavior; this is not a bugThe behavior described is the intended behavior; this is not a bug