import type { LikeType } from "./LikeType"; import type { PaginationCursor } from "./PaginationCursor"; import type { PersonContentType } from "./PersonContentType"; /** * Gets your liked / disliked posts */ export type ListPersonLiked = { type_?: PersonContentType; like_type?: LikeType; page_cursor?: PaginationCursor; limit?: number; };