Why does Record.set only accept string or symbol keys and not number?
is there a reason effects Record.set is typed to accept only string or symbol for record keys?
keyof T is resolving to
keyof T is resolving to
string | number | symbol but keys in Record operations appear to only accept string | symbol. i can cast to a string just curious to know the decision behind omitting number...