summaryrefslogtreecommitdiffstats
path: root/src/index.ts
diff options
context:
space:
mode:
authorLibravatar muhamedsalih-tw <104364298+muhamedsalih-tw@users.noreply.github.com>2022-11-06 10:36:51 +0530
committerLibravatar GitHub <noreply@github.com>2022-11-06 05:06:51 +0000
commite7dbea5bc6d7e6b121dbc94b21b759a29f16e0c0 (patch)
tree958d6dad84687352af27c19c50bdcac345bc3a79 /src/index.ts
parent6.2.1-nightly.39 [skip ci] (diff)
downloadferdium-app-e7dbea5bc6d7e6b121dbc94b21b759a29f16e0c0.tar.gz
ferdium-app-e7dbea5bc6d7e6b121dbc94b21b759a29f16e0c0.tar.zst
ferdium-app-e7dbea5bc6d7e6b121dbc94b21b759a29f16e0c0.zip
Transform tray & menu files to typescript (#740)
Diffstat (limited to 'src/index.ts')
-rw-r--r--src/index.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/index.ts b/src/index.ts
index 3233714e0..0efd0437d 100644
--- a/src/index.ts
+++ b/src/index.ts
@@ -33,7 +33,7 @@ import { ifUndefined } from './jsUtils';
33 33
34import { mainIpcHandler as basicAuthHandler } from './features/basicAuth'; 34import { mainIpcHandler as basicAuthHandler } from './features/basicAuth';
35import ipcApi from './electron/ipc-api'; 35import ipcApi from './electron/ipc-api';
36import Tray from './lib/Tray'; 36import TrayIcon from './lib/Tray';
37import DBus from './lib/DBus'; 37import DBus from './lib/DBus';
38import Settings from './electron/Settings'; 38import Settings from './electron/Settings';
39import handleDeepLink from './electron/deepLinking'; 39import handleDeepLink from './electron/deepLinking';
@@ -251,7 +251,7 @@ const createWindow = () => {
251 }); 251 });
252 252
253 // Initialize System Tray 253 // Initialize System Tray
254 const trayIcon: Tray = new Tray(); 254 const trayIcon: TrayIcon = new TrayIcon();
255 255
256 // Initialize DBus interface 256 // Initialize DBus interface
257 const dbus = new DBus(trayIcon); 257 const dbus = new DBus(trayIcon);