import { ipcRenderer } from 'electron'; function sendCredentials(credentials: ICredentials): void { ipcRenderer.send(IpcChannels.Credentials, credentials); } export default { sendCredentials, };