🔎 Search Terms
🕗 Version & Regression Information
I could not get symbol intellisense working at all on ts playground
using every-ts:
I can reproduce this in 4.4 (the first version to support symbol indices according to stackoverflow.com/a/649435420) and 7956c00 (main at the time of writing)
⏯ Playground Link
No response
💻 Code
class Thing {
static readonly SYM_FOO = Symbol('Thing.foo');
public method() {
const foo: { [Thing.SYM_FOO]: string[]; } = { [Thing.SYM_FOO]: ['bar'] };
// Try autocompleting Thing.SYM_FOO on foo
foo.
}
}
🙁 Actual behavior
class Thing {
static readonly SYM_FOO = Symbol('Thing.foo');
public method() {
const foo: { [Thing.SYM_FOO]: string[]; } = { [Thing.SYM_FOO]: ['bar'] };
// Try autocompleting Thing.SYM_FOO on foo
foo[Thing]
}
}
🙂 Expected behavior
class Thing {
static readonly SYM_FOO = Symbol('Thing.foo');
public method() {
const foo: { [Thing.SYM_FOO]: string[]; } = { [Thing.SYM_FOO]: ['bar'] };
// Try autocompleting Thing.SYM_FOO on foo
foo[Thing.SYM_FOO]
}
}
Additional information about the issue
No response
🔎 Search Terms
🕗 Version & Regression Information
I could not get symbol intellisense working at all on ts playground
using every-ts:
I can reproduce this in 4.4 (the first version to support symbol indices according to stackoverflow.com/a/649435420) and 7956c00 (main at the time of writing)
⏯ Playground Link
No response
💻 Code
🙁 Actual behavior
🙂 Expected behavior
Additional information about the issue
No response