Skip to content

Commit

Permalink
Fixup eslint
Browse files Browse the repository at this point in the history
  • Loading branch information
eoghanmurray committed Nov 15, 2023
1 parent 6320751 commit 36618ab
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/rrweb-snapshot/src/snapshot.ts
Original file line number Diff line number Diff line change
Expand Up @@ -431,7 +431,7 @@ function serializeNode(
mirror: Mirror;
blockClass: string | RegExp;
blockSelector: string | null;
needsMask: boolean;
needsMask: boolean | undefined;
inlineStylesheet: boolean;
maskInputOptions: MaskInputOptions;
maskTextFn: MaskTextFn | undefined;
Expand Down Expand Up @@ -533,7 +533,7 @@ function getRootId(doc: Document, mirror: Mirror): number | undefined {
function serializeTextNode(
n: Text,
options: {
needsMask: boolean;
needsMask: boolean | undefined;
maskTextFn: MaskTextFn | undefined;
rootId: number | undefined;
},
Expand Down

0 comments on commit 36618ab

Please sign in to comment.