also resolve missing previous node

This commit is contained in:
Yanzhen Yu
2026-04-01 12:00:00 +08:00
parent 00df74fd3f
commit cbe80dbd2e
3 changed files with 36 additions and 25 deletions

View File

@@ -232,9 +232,10 @@ export type playerMetaData = {
totalTime: number;
};
export type missingNextNodeMap = {
[id: number]: {
node: Node;
mutation: addedNodeMutation;
};
export type missingNode = {
node: Node;
mutation: addedNodeMutation;
};
export type missingNodeMap = {
[id: number]: missingNode;
};