Skip to content

Commit

Permalink
linting
Browse files Browse the repository at this point in the history
  • Loading branch information
KararTY committed Dec 18, 2024
1 parent 22d22fd commit 1ae8d43
Showing 1 changed file with 5 additions and 8 deletions.
13 changes: 5 additions & 8 deletions src/lib/components/editor/plugins/Diff/Types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,9 @@ export type ___ChangeTextNode = { ___type: JSONDiffType } & Record<
}
>;

export type ___Change = { ___type: JSONDiffType } & Record<
string,
___ChangeObject
>;
export type ___Change = { ___type: JSONDiffType } & Record<string, ___ChangeObject>;

export type ___ChangeObject = {
__old?: any;
__new?: any;
}
export type ___ChangeObject = {
__old?: any;
__new?: any;
};

0 comments on commit 1ae8d43

Please sign in to comment.