TypeScript/tests/cases/compiler/noCrashUMDMergedWithGlobalValue.ts

10 lines
232 B
TypeScript
Raw Normal View History

//@filename: /other.d.ts
export as namespace SomeInterface;
export type Action = "PUSH" | "POP" | "REPLACE";
//@filename: /main.ts
interface SomeInterface {
readonly length: number;
}
declare const value: SomeInterface;