adds authorUri to comment type

This commit is contained in:
jessop 2019-07-17 16:46:22 -04:00
parent 2e2383afb8
commit d76b170c82
2 changed files with 4 additions and 2 deletions

View file

@ -1,5 +1,6 @@
declare type Comment = { declare type Comment = {
author: string, author?: string,
author_url?: string,
claim_index?: number, claim_index?: number,
comment_id?: number, comment_id?: number,
downvotes?: number, downvotes?: number,

View file

@ -1,5 +1,6 @@
declare type Comment = { declare type Comment = {
author: string, author?: string,
author_url?: string,
claim_index?: number, claim_index?: number,
comment_id?: number, comment_id?: number,
downvotes?: number, downvotes?: number,