sort imports (#6094)

Signed-off-by: Jess Frazelle <github@jessfraz.com>
This commit is contained in:
Jess Frazelle
2025-04-01 14:20:42 -07:00
committed by GitHub
parent ee20a09e7e
commit 2fc8cb5376
342 changed files with 3008 additions and 2699 deletions

12
interface.d.ts vendored
View File

@ -1,13 +1,13 @@
import fs from 'node:fs/promises'
import fsSync from 'node:fs'
import path from 'path'
import { dialog, shell } from 'electron'
import { MachinesListing } from 'components/MachineManagerProvider'
import type { Channel } from 'src/menu/channels'
import { dialog, shell } from 'electron'
import { Menu, WebContents } from 'electron'
import type { WebContentSendPayload } from 'menu/channels'
import { ZooLabel, ZooMenuEvents } from 'menu/roles'
import type { MenuActionIPC } from 'menu/rules'
import type { WebContentSendPayload } from 'menu/channels'
import fsSync from 'node:fs'
import fs from 'node:fs/promises'
import path from 'path'
import type { Channel } from 'src/menu/channels'
// Extend the interface with additional custom properties
declare module 'electron' {