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.1.1
Code With the latest keyof feature in TypeScript, I'd expect Object.keys() to return them. In code:
keyof
Object.keys()
interface ObjectConstructor { ... keys<T>(o: T): Array<keyof T>; }