We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
keyofStringsOnly
TypeScript Version: 2.9.2
Search Terms: PropertyKey keyofStringsOnly
PropertyKey
Code
In lib.es5.d.ts, we have now
lib.es5.d.ts
declare type PropertyKey = string | number | symbol;
however this seems incorrect if "keyofStringsOnly": true. So as to observe that setting, it seems like it should be
"keyofStringsOnly": true
declare type PropertyKey = keyof any;
TypeScript Version: 2.9.2
Search Terms:
PropertyKeykeyofStringsOnlyCode
In
lib.es5.d.ts, we have nowhowever this seems incorrect if
"keyofStringsOnly": true. So as to observe that setting, it seems like it should be