Remove unused elements

This commit is contained in:
momo5502
2025-05-01 16:07:54 +02:00
parent c215c956a5
commit 83e75e8d50
2 changed files with 0 additions and 9 deletions

View File

@@ -1,11 +1,7 @@
import { createDefaultSettings, Settings, translateSettings } from "./settings";
import { FileEntry } from "./zip-file";
import * as flatbuffers from "flatbuffers";
import * as fbDebugger from "@/fb/debugger";
import * as fbDebuggerEvent from "@/fb/debugger/event";
import { Filesystem } from "./filesystem";
type LogHandler = (lines: string[]) => void;

View File

@@ -157,11 +157,6 @@ function selectFiles(): Promise<FileList> {
});
}
interface IconCache {
get: (file: string) => string | null;
set: (file: string, data: string | null) => void;
}
function getPeIcon(
filesystem: Filesystem,
file: string,