Closed
Description
interface A {
a?: string
b?: number
[key: symbol]: string
}
const symbolKey = Symbol('key')
const a: A = {
[symbolKey]: '123',
}
symbol
still not working:ts playground
Originally posted by @liuweiGL in #44512 (comment)