更新组件,兼容MES PullRequest #924

This commit is contained in:
2025-04-29 15:58:53 +08:00
parent fa8b468c32
commit 18582016b2
11 changed files with 204 additions and 88 deletions

7
src/types/InvokerContext.d.ts vendored Normal file
View File

@@ -0,0 +1,7 @@
import { ModContext } from "./ModContext";
export type InvokerContext = {
getRenderContext: () => unknown[] | undefined;
initFinish: (ctx: ModContext) => void;
receiver: ModContext | null;
}