TypeScript/tests/baselines/reference/exportEqualsUmd.types
2016-02-25 20:48:15 -08:00

7 lines
161 B
Plaintext

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