// Copyright © 2022-2026 Partium, Inc. DBA Partium import { BaseResponse } from '..'; /** * Base response for getting paginated data. */ export interface BasePaginatedResponse extends BaseResponse { /** * The data. */ results?: T[]; /** * The next cursor to get the next page of data. */ next?: string; }