TypeScript/tests/baselines/reference/constEnumMergingWithValues1.types

17 lines
218 B
Plaintext

=== tests/cases/compiler/constEnumMergingWithValues1.ts ===
function foo() {}
>foo : typeof foo
module foo {
>foo : typeof foo
const enum E { X }
>E : E
>X : E
}
export = foo
>foo : typeof foo