UNPKG

wechaty-puppet

Version:

Abstract Puppet for Wechaty

19 lines (16 loc) 371 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, }