also resolve missing previous node

This commit is contained in:
Yanzhen Yu
2018-11-05 13:20:42 +08:00
parent f1930490b8
commit 4709c720cd
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;
};