We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
TypeScript Version: 2.6.2
Currently Object.entries isn't well typed and doesn't account for a union of strings as the keys of an object.
Object.entries
interface Object { entries<X extends string,Y>(o: { [key in X]: Y }): [X, Y][]; }