From e9ca1e72e6a3bfc4bca3d488abc87fdc6ca632ce Mon Sep 17 00:00:00 2001 From: Curve Date: Fri, 31 May 2024 18:09:46 +0200 Subject: [PATCH] fix(venmic): superflous type --- src/main/venmic.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/main/venmic.ts b/src/main/venmic.ts index ab45bdc..33900cc 100644 --- a/src/main/venmic.ts +++ b/src/main/venmic.ts @@ -4,7 +4,7 @@ * Copyright (c) 2023 Vendicated and Vencord contributors */ -import type { PatchBay as PatchBayType } from "@vencord/venmic"; +import type { Node, PatchBay as PatchBayType } from "@vencord/venmic"; import { app, ipcMain } from "electron"; import { join } from "path"; import { IpcEvents } from "shared/IpcEvents"; @@ -13,7 +13,6 @@ import { STATIC_DIR } from "shared/paths"; import { Settings } from "./settings"; type LinkData = Parameters[0]; -type Node = Record; let PatchBay: typeof PatchBayType | undefined; let patchBayInstance: PatchBayType | undefined;