mirror of
https://github.com/quine-global/hyper.git
synced 2026-01-13 04:28:41 -09:00
Fix lint issues
This commit is contained in:
parent
85e6a0d2c8
commit
b3e3e20d4f
4 changed files with 4 additions and 4 deletions
|
|
@ -1,5 +1,5 @@
|
|||
import {app, Menu} from 'electron';
|
||||
import type {BaseWindow, BrowserWindow} from 'electron';
|
||||
import type {BrowserWindow} from 'electron';
|
||||
|
||||
import {openConfig, getConfig} from './config';
|
||||
import {updatePlugins} from './plugins';
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
import type {BaseWindow, BrowserWindow, MenuItemConstructorOptions} from 'electron';
|
||||
import type {BrowserWindow, MenuItemConstructorOptions} from 'electron';
|
||||
|
||||
const viewMenu = (
|
||||
commandKeys: Record<string, string>,
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
import type {BaseWindow, BrowserWindow, MenuItemConstructorOptions} from 'electron';
|
||||
import type {BrowserWindow, MenuItemConstructorOptions} from 'electron';
|
||||
|
||||
const windowMenu = (
|
||||
commandKeys: Record<string, string>,
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
import './v8-snapshot-util';
|
||||
import {webFrame} from 'electron';
|
||||
import React, { useMemo } from 'react';
|
||||
import React from 'react';
|
||||
|
||||
import {createRoot} from 'react-dom/client';
|
||||
import {Provider} from 'react-redux';
|
||||
|
|
|
|||
Loading…
Reference in a new issue