mirror of
https://github.com/LemmyNet/lemmy-js-client.git
synced 2024-11-01 01:59:55 +00:00
Fix jsdoc comment for listCommentLikes (#231)
* Fix jsdoc comment for listCommentLikes * Fix another jsdoc comment
This commit is contained in:
parent
fcee76937b
commit
c01fc0c017
1 changed files with 2 additions and 2 deletions
|
@ -622,7 +622,7 @@ export class LemmyHttp {
|
||||||
/**
|
/**
|
||||||
* List a post's likes. Admin-only.
|
* List a post's likes. Admin-only.
|
||||||
*
|
*
|
||||||
* `HTTP.GET /post/like`
|
* `HTTP.GET /post/like/list`
|
||||||
*/
|
*/
|
||||||
listPostLikes(form: ListPostLikes) {
|
listPostLikes(form: ListPostLikes) {
|
||||||
return this.#wrapper<ListPostLikes, ListPostLikesResponse>(
|
return this.#wrapper<ListPostLikes, ListPostLikesResponse>(
|
||||||
|
@ -778,7 +778,7 @@ export class LemmyHttp {
|
||||||
/**
|
/**
|
||||||
* List a comment's likes. Admin-only.
|
* List a comment's likes. Admin-only.
|
||||||
*
|
*
|
||||||
* `HTTP.GET //like`
|
* `HTTP.GET /comment/like/list`
|
||||||
*/
|
*/
|
||||||
listCommentLikes(form: ListCommentLikes) {
|
listCommentLikes(form: ListCommentLikes) {
|
||||||
return this.#wrapper<ListCommentLikes, ListCommentLikesResponse>(
|
return this.#wrapper<ListCommentLikes, ListCommentLikesResponse>(
|
||||||
|
|
Loading…
Reference in a new issue