Adding saved_only to GetComments and GetPosts

This commit is contained in:
Dessalines 2021-03-23 18:53:59 -04:00
parent e6b0e418fa
commit 9bb31e3ff8
2 changed files with 2 additions and 0 deletions

View file

@ -73,6 +73,7 @@ export interface GetComments {
limit?: number;
community_id?: number;
community_name?: string;
saved_only: boolean;
auth?: string;
}

View file

@ -44,6 +44,7 @@ export interface GetPosts {
limit?: number;
community_id?: number;
community_name?: string;
saved_only: boolean;
auth?: string;
}