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