UNPKG

wechaty-puppet

Version:

Abstract Puppet for Wechaty

14 lines 406 B
/** * Google Cloud APIs - Common design patterns - List Pagination * @see https://cloud.google.com/apis/design/design_patterns#list_pagination */ interface PaginationRequest { pageSize?: number; pageToken?: string; } interface PaginationResponse<T> { nextPageToken?: string; response: T; } export type { PaginationRequest, PaginationResponse, }; //# sourceMappingURL=pagination.d.ts.map