fix(venmic): superflous type
This commit is contained in:
parent
c722d1ad97
commit
e9ca1e72e6
1 changed files with 1 additions and 2 deletions
|
@ -4,7 +4,7 @@
|
||||||
* Copyright (c) 2023 Vendicated and Vencord contributors
|
* 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 { app, ipcMain } from "electron";
|
||||||
import { join } from "path";
|
import { join } from "path";
|
||||||
import { IpcEvents } from "shared/IpcEvents";
|
import { IpcEvents } from "shared/IpcEvents";
|
||||||
|
@ -13,7 +13,6 @@ import { STATIC_DIR } from "shared/paths";
|
||||||
import { Settings } from "./settings";
|
import { Settings } from "./settings";
|
||||||
|
|
||||||
type LinkData = Parameters<PatchBayType["link"]>[0];
|
type LinkData = Parameters<PatchBayType["link"]>[0];
|
||||||
type Node = Record<string, string>;
|
|
||||||
|
|
||||||
let PatchBay: typeof PatchBayType | undefined;
|
let PatchBay: typeof PatchBayType | undefined;
|
||||||
let patchBayInstance: PatchBayType | undefined;
|
let patchBayInstance: PatchBayType | undefined;
|
||||||
|
|
Reference in a new issue