import type { PaginationCursor } from "./PaginationCursor"; import type { PostId } from "./PostId"; /** * List post likes. Admins-only. */ export type ListPostLikes = { post_id: PostId; page_cursor?: PaginationCursor; limit?: number; };