1
0
mirror of https://github.com/upscayl/upscayl.git synced 2025-02-21 21:19:31 +01:00

Sorted imports

This commit is contained in:
Nayam Amarshe 2023-03-18 17:51:02 +05:30
parent c9325ca879
commit dbab319793

View File

@ -7,14 +7,12 @@ import {
getSingleImageSharpenArguments, getSingleImageSharpenArguments,
} from "./utils/getArguments"; } from "./utils/getArguments";
// Native // Native
import { join, parse } from "path";
import { format } from "url";
import { ChildProcessWithoutNullStreams, spawn } from "child_process";
import fs from "fs";
import sizeOf from "image-size";
import { autoUpdater } from "electron-updater"; import { autoUpdater } from "electron-updater";
import getPlatform from "./getPlatform"; import getPlatform from "./getPlatform";
import ffmpeg from "upscayl-ffmpeg"; import ffmpeg from "upscayl-ffmpeg";
import { join, parse } from "path";
import { format } from "url";
import fs from "fs";
import { execPath, modelsPath } from "./binaries"; import { execPath, modelsPath } from "./binaries";
@ -28,10 +26,10 @@ import {
MessageBoxOptions, MessageBoxOptions,
} from "electron"; } from "electron";
import isDev from "electron-is-dev";
import prepareNext from "electron-next";
import commands from "./commands";
import { spawnUpscayl } from "./upscayl"; import { spawnUpscayl } from "./upscayl";
import prepareNext from "electron-next";
import isDev from "electron-is-dev";
import commands from "./commands";
// Prepare the renderer once the app is ready // Prepare the renderer once the app is ready
let mainWindow; let mainWindow;