7 lines
203 B
TypeScript
7 lines
203 B
TypeScript
|
import { ModContext } from "./ModContext";
|
||
|
|
||
|
export type InvokerContext = {
|
||
|
getRenderContext: () => unknown[] | undefined;
|
||
|
initFinish: (ctx: ModContext) => void;
|
||
|
receiver: ModContext | null;
|
||
|
}
|