real-debrid-downloader/src/shared/ipc.ts
Sucukdeluxe 02370a40b4
Some checks are pending
Build and Release / build (push) Waiting to run
Restore update checks and startup notifications
2026-02-27 04:22:00 +01:00

17 lines
537 B
TypeScript

export const IPC_CHANNELS = {
GET_SNAPSHOT: "app:get-snapshot",
GET_VERSION: "app:get-version",
CHECK_UPDATES: "app:check-updates",
UPDATE_SETTINGS: "app:update-settings",
ADD_LINKS: "queue:add-links",
ADD_CONTAINERS: "queue:add-containers",
CLEAR_ALL: "queue:clear-all",
START: "queue:start",
STOP: "queue:stop",
TOGGLE_PAUSE: "queue:toggle-pause",
CANCEL_PACKAGE: "queue:cancel-package",
PICK_FOLDER: "dialog:pick-folder",
PICK_CONTAINERS: "dialog:pick-containers",
STATE_UPDATE: "state:update"
} as const;