From 694c2763cbdd3e84aff0cc7e2a7609b030d1a16a Mon Sep 17 00:00:00 2001 From: filtered <176114999+webfiltered@users.noreply.github.com> Date: Thu, 26 Dec 2024 17:54:54 +1100 Subject: [PATCH] Fix enum imported via meta file --- src/models/DownloadManager.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/models/DownloadManager.ts b/src/models/DownloadManager.ts index 2550bb3a..6ee30a20 100644 --- a/src/models/DownloadManager.ts +++ b/src/models/DownloadManager.ts @@ -1,10 +1,9 @@ import { session, DownloadItem, ipcMain } from 'electron'; import path from 'node:path'; import fs from 'node:fs'; -import { IPC_CHANNELS } from '../constants'; +import { DownloadStatus, IPC_CHANNELS } from '../constants'; import log from 'electron-log/main'; import type { AppWindow } from '../main-process/appWindow'; -import { DownloadStatus } from '../main_types'; export interface Download { url: string;