import type { AppEvent } from "./AppEvent"; import type { PaginationCursor } from "./PaginationCursor"; export interface HttpGetAppEventsResponse { events: Array; cursor: PaginationCursor | null; }