Add "Tools" tab with chart issue scanner

This commit is contained in:
Geomitron
2024-12-22 18:35:43 -06:00
parent d2e40b7c24
commit a7113384e8
15 changed files with 866 additions and 13 deletions

View File

@@ -74,6 +74,7 @@ export interface IpcToMainEmitEvents {
quit: void
showFolder: string
showFile: string
scanIssues: void
}
export type IpcToMainEmitHandlers = {
@@ -93,6 +94,7 @@ export interface IpcFromMainEmitEvents {
queueUpdated: number[]
maximized: void
minimized: void
updateIssueScan: { status: 'progress' | 'error' | 'done'; message: string }
}
export type IpcFromMainEmitHandlers = {