/**
* This file contains everything
* that is supposed to run inside of the electron main process
*/importtype { RxStorage } from'../../types/index.d.ts';
exportdeclarefunction exposeIpcMainRxStorage<T, D>(args: {
key: string;
storage: RxStorage<T, D>;
ipcMain: any;
}): void;