fix: apply fix from eslint

This commit is contained in:
JellyBrick
2025-09-05 22:43:34 +09:00
parent 23013cddb9
commit 68e63f809c
58 changed files with 137 additions and 116 deletions

View File

@ -1,6 +1,6 @@
import path from 'node:path';
import { app, BrowserWindow } from 'electron';
import { app, type BrowserWindow } from 'electron';
import getSongControls from './song-controls';

View File

@ -1,5 +1,5 @@
// This is used for to control the songs
import { BrowserWindow, ipcMain } from 'electron';
import { type BrowserWindow, ipcMain } from 'electron';
// see protocol-handler.ts
type ArgsType<T> = T | string[] | undefined;

View File

@ -1,4 +1,4 @@
import { BrowserWindow, ipcMain, nativeImage, net } from 'electron';
import { type BrowserWindow, ipcMain, nativeImage, net } from 'electron';
import { Mutex } from 'async-mutex';