Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Object.keys and Object.entries should return correct index types #19765

Closed
zakjan opened this issue Nov 6, 2017 · 2 comments
Closed

Object.keys and Object.entries should return correct index types #19765

zakjan opened this issue Nov 6, 2017 · 2 comments
Labels
Duplicate An existing issue was already created

Comments

@zakjan
Copy link

zakjan commented Nov 6, 2017

TypeScript Version: 2.6.1

Code

enum ItemType {
    A = "a",
    B = "b",
}
const obj: { [key in ItemType]: string } = { [ItemType.A]: "x", [ItemType.B]: "y" };

const keys = Object.keys(obj);
const entries = Object.entries(obj);

Expected behavior:
keys should have type ItemType[]
entries should have type [ItemType, string][]

Actual behavior:
keys has type string[]
entries has type [string, string][]

@jcalz
Copy link
Contributor

jcalz commented Nov 6, 2017

One of many duplicates of #13254, I think. I

@ghost ghost added the Duplicate An existing issue was already created label Nov 6, 2017
@typescript-bot
Copy link
Collaborator

Automatically closing this issue for housekeeping purposes. The issue labels indicate that it is unactionable at the moment or has already been addressed.

@microsoft microsoft locked and limited conversation to collaborators Jun 14, 2018
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
Duplicate An existing issue was already created
Projects
None yet
Development

No branches or pull requests

3 participants