From 61fd38d6d9170a9583c62366a2d4afa40507ce01 Mon Sep 17 00:00:00 2001 From: Vendicated Date: Sat, 22 Oct 2022 18:18:41 +0200 Subject: style: Sort imports --- src/preload.ts | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'src/preload.ts') diff --git a/src/preload.ts b/src/preload.ts index 5de4298..fccc024 100644 --- a/src/preload.ts +++ b/src/preload.ts @@ -16,12 +16,13 @@ * along with this program. If not, see . */ -import electron, { contextBridge, webFrame, ipcRenderer } from "electron"; +import electron, { contextBridge, ipcRenderer, webFrame } from "electron"; import { readFileSync } from "fs"; import { join } from "path"; -import VencordNative from "./VencordNative"; -import IpcEvents from "./utils/IpcEvents"; + import { debounce } from "./utils/debounce"; +import IpcEvents from "./utils/IpcEvents"; +import VencordNative from "./VencordNative"; if (electron.desktopCapturer === void 0) { // Fix for desktopCapturer being main only in Electron 17+ -- cgit