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