TypeScript/tests/baselines/reference/exportEqualsUmd.types
Andy a299d2dd1c
isDeclarationName: support ComputedPropertyName (#22123)
* isDeclarationName: support ComputedPropertyName

* update additional baseline
2018-02-22 15:53:49 -08:00

8 lines
178 B
Plaintext

=== tests/cases/compiler/exportEqualsUmd.ts ===
export = { ["hi"]: "there" };
>{ ["hi"]: "there" } : { ["hi"]: string; }
>["hi"] : string
>"hi" : "hi"
>"there" : "there"