update typescript to 3.9.5

This commit is contained in:
Yanzhen Yu
2026-04-01 12:00:00 +08:00
parent d57cae3d51
commit 6b10e1c4ee
9 changed files with 92 additions and 19 deletions

5
typings/types.d.ts vendored
View File

@@ -161,7 +161,7 @@ export declare type removedNodeMutation = {
};
export declare type addedNodeMutation = {
parentId: number;
previousId: number | null;
previousId?: number | null;
nextId: number | null;
node: serializedNodeWithId;
};
@@ -296,6 +296,7 @@ export declare enum ReplayerEvents {
SkipStart = "skip-start",
SkipEnd = "skip-end",
MouseInteraction = "mouse-interaction",
EventCast = "event-cast"
EventCast = "event-cast",
CustomEvent = "custom-event"
}
export {};