-
Notifications
You must be signed in to change notification settings - Fork 13.1k
Open
Labels
Awaiting More FeedbackThis means we'd like to hear from more people who would be helped by this featureThis means we'd like to hear from more people who would be helped by this featureSuggestionAn idea for TypeScriptAn idea for TypeScript
Description
π Search Terms
enum AND object AND keys
π Version & Regression Information
I tried various versions up to nightly (v6.0.0-dev.20251030) with no results
β― Playground Link
π» Code
enum MyEnum {
FOO,
BAR,
}
const foo: Record<MyEnum, string> = {
// try to complete keys in this object
// expected [MyEnum.FOO], [MyEnum.BAR]
// actual "0", "1"
}π Actual behavior
"0" and "1" are suggested as completions
π Expected behavior
[MyEnum.FOO] and [MyEnum.BAR] are suggested as completions
Additional information about the issue
using the quick fix Add Missing Properties uses the correct, expected behaviour
Metadata
Metadata
Assignees
Labels
Awaiting More FeedbackThis means we'd like to hear from more people who would be helped by this featureThis means we'd like to hear from more people who would be helped by this featureSuggestionAn idea for TypeScriptAn idea for TypeScript