fix: json type (#214)

main
bokuweb 2020-12-16 11:59:48 +09:00 committed by GitHub
parent 6133cffd21
commit d4b9e0b5e2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 9 additions and 3 deletions

View File

@ -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;
};
};