[Feat] Refactor UI loader & Add freeze report override

This commit is contained in:
Minoricew
2025-06-10 00:28:53 +08:00
parent ed29f1b86f
commit a639ae0ac6
17 changed files with 861 additions and 167 deletions

View File

@@ -1,12 +1,13 @@
import { WindowName } from "../main/core";
interface UIHookTarget {
active: boolean;
pageURI: string;
pageScript: string;
pageSelector: string;
selectorMode: "insertAfter" | "insertBefore" | "appendChild";
pageCSS: string;
active?: boolean;
pageURI?: string;
pageScript?: string;
pageSelector?: string;
selectorMode?: "insertAfter" | "insertBefore" | "appendChild";
pageCSS?: string;
childs?: Record<AuraElementUID, UIHookTarget>;
revive?: boolean;
}