UNPKG

@replyke/core

Version:

Replyke: Build interactive apps with social features like comments, votes, feeds, user lists, notifications, and more.

12 lines (11 loc) 243 B
export interface PaginationMetadata { page: number; pageSize: number; totalPages: number; totalItems: number; hasMore: boolean; } export interface PaginatedResponse<T> { data: T[]; pagination: PaginationMetadata; }