update typescript to 3.9.5

This commit is contained in:
Yanzhen Yu
2020-06-12 18:32:48 +08:00
parent 8766335c82
commit 7feb2c945c
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 {};