extract types for ipc

This commit is contained in:
Anton Bracke
2022-02-18 10:26:21 +01:00
parent c891fcb1bd
commit a86bf32ee2
5 changed files with 30 additions and 10 deletions
+1 -6
View File
@@ -1,11 +1,6 @@
import ElectronLog from "electron-log";
import Settings from "electron-settings";
type Server = {
_id: string;
name: string;
url: string;
};
import type { Server } from "./sidebar/types";
type SettingsData = {
log_level: ElectronLog.LogLevel;