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/components/Monaco.ts | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'src/components/Monaco.ts') diff --git a/src/components/Monaco.ts b/src/components/Monaco.ts index 6b01891..33f5545 100644 --- a/src/components/Monaco.ts +++ b/src/components/Monaco.ts @@ -16,11 +16,12 @@ * along with this program. If not, see . */ +import monacoHtml from "@fileContent/monacoWin.html"; + import { IpcEvents } from "../utils"; import { debounce } from "../utils/debounce"; -import { find } from "../webpack/webpack"; -import monacoHtml from "@fileContent/monacoWin.html"; import { Queue } from "../utils/Queue"; +import { find } from "../webpack/webpack"; const queue = new Queue(); const setCss = debounce((css: string) => { -- cgit