export interface PagedData { data: (T | undefined)[]; hasNext: boolean; } export interface Requester { doNextRequest: () => Promise>; }