Merge pull request #167 from lbryio/commentAuthorUri

adds authorUri to comment type
This commit is contained in:
jessopb 2019-07-17 16:54:34 -04:00 committed by GitHub
commit 755424a2a8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 2 deletions

View file

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

View file

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