fix: json type (#214)
parent
6133cffd21
commit
d4b9e0b5e2
|
@ -9,10 +9,16 @@ export type CommentJSON = {
|
|||
};
|
||||
|
||||
export type CommentRangeStartJSON = {
|
||||
type: "commentRangeStart";
|
||||
data: {
|
||||
id: number;
|
||||
comment: CommentJSON;
|
||||
};
|
||||
};
|
||||
|
||||
export type CommentRangeEndJSON = {
|
||||
type: "commentRangeEnd";
|
||||
data: {
|
||||
id: number;
|
||||
};
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue