const store = {}; export default store; export function merge(obj: any): void { if (obj == undefined) { return; } Object.assign(store, obj); }