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,16 +1,16 @@
import net from 'net';
import { SocksClient, SocksClientOptions } from 'socks';
import { SocksClient, type SocksClientOptions } from 'socks';
import is from 'electron-is';
import { createBackend, LoggerPrefix } from '@/utils';
import { BackendType } from './types';
import { type BackendType } from './types';
import config from '@/config';
import { AuthProxyConfig, defaultAuthProxyConfig } from '../config';
import { type AuthProxyConfig, defaultAuthProxyConfig } from '../config';
import type { BackendContext } from '@/types/contexts';

View File

@ -1,5 +1,4 @@
import net from 'net';
import type net from 'net';
import type { AuthProxyConfig } from '../config';
import type { Server } from 'http';