Fix wrong property name of InsertJSON and DeleteJSON (#349)

main
inokawa 2021-09-29 13:43:46 +09:00 committed by GitHub
parent 1525d2826c
commit 4d5835e9de
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -50,7 +50,7 @@ export type InsertJSON = {
| CommentRangeEndJSON
)[];
author: string;
data: string;
date: string;
};
};
@ -59,7 +59,7 @@ export type DeleteJSON = {
data: {
children: DeleteChildJSON[];
author: string;
data: string;
date: string;
};
};