mirror of
https://github.com/LemmyNet/lemmy-js-client.git
synced 2024-11-30 00:01:14 +00:00
22 lines
687 B
TypeScript
22 lines
687 B
TypeScript
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
|
|
import type { CommentId } from "./CommentId";
|
|
import type { CommentSortType } from "./CommentSortType";
|
|
import type { CommunityId } from "./CommunityId";
|
|
import type { ListingType } from "./ListingType";
|
|
import type { PostId } from "./PostId";
|
|
|
|
export interface GetComments {
|
|
type_?: ListingType;
|
|
sort?: CommentSortType;
|
|
max_depth?: number;
|
|
page?: number;
|
|
limit?: number;
|
|
community_id?: CommunityId;
|
|
community_name?: string;
|
|
post_id?: PostId;
|
|
parent_id?: CommentId;
|
|
saved_only?: boolean;
|
|
liked_only?: boolean;
|
|
disliked_only?: boolean;
|
|
auth?: string;
|
|
}
|