Is it possible to rename the functions that are exported using the following syntax in Typescript/Javascript?
export const { selectIds, selectEntities, selectAll, selectTotal } = adapter.getSelectors(selectState);
I would like to import selectAll
as selectAllThings
into other files.