TypeScript/tests/baselines/reference/exportEqualsAmd.types

7 lines
161 B
Text
Raw Normal View History

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