MapKeys
Map keys of an object to another object.
Example
MapKeys<{
oldFoo: string;
oldBar: number;
}, {
bar: 'oldBar';
foo: 'oldFoo';
}> // { foo: string; bar: number }
MapKeys
Map keys of an object to another object.
MapKeys<{
oldFoo: string;
oldBar: number;
}, {
bar: 'oldBar';
foo: 'oldFoo';
}> // { foo: string; bar: number }