import type { CommentId } from "./CommentId"; import type { PaginationCursor } from "./PaginationCursor"; /** * List comment likes. Admins-only. */ export type ListCommentLikes = { comment_id: CommentId; page_cursor?: PaginationCursor; limit?: number; };