Shared:Utils:Common: fix export

This commit is contained in:
Akmal Isomadinov 2024-02-23 20:26:32 +05:00
parent 04ee2a4116
commit c945e0f7b9

View File

@ -821,7 +821,7 @@ export function getObjectByLocation(location: Location) {
}
}
const RoomsTypeValues = Object.values(RoomsType).filter(
export const RoomsTypeValues = Object.values(RoomsType).filter(
(item): item is number => typeof item === "number",
);