import { metrics } from 'config'; import { getAsyncItem, removeAsyncItem, setAsyncItem } from './asyncStorage'; const { STORAGE } = metrics; export const setActiveRoomId = async (roomId: string) => { await setAsyncItem(STORAGE.ACTIVE_ROOM_ID, roomId); }; export const getActiveRoomId = async () => getAsyncItem(STORAGE.ACTIVE_ROOM_ID); export const removeActiveRoomId = async () => removeAsyncItem(STORAGE.ACTIVE_ROOM_ID);