TypeScript/tests/baselines/reference/exportEqualsAmd.types
2016-09-01 14:25:44 -07:00

7 lines
160 B
Plaintext

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