import { Branded } from 'io-ts'; export interface ApplicationPaginationTokenBrand { readonly applicationPaginationToken: unique symbol; } export type ApplicationPaginationToken = Branded; export interface ApplicationPaginatedResults { /** List of results. */ results: ReadonlyArray; /** Token to access the next page of results, if any. */ nextPageToken: ApplicationPaginationToken | undefined; }