import type { PaginationCursor } from "./PaginationCursor"; import type { PersonContentType } from "./PersonContentType"; /** * Gets your saved posts and comments */ export type ListPersonSaved = { type_?: PersonContentType; search_term?: string; page_cursor?: PaginationCursor; limit?: number; };