import { Pageable, PageParametersBase } from "./pageable"; /** * The set of parameters that appear in a paginated operation (requestBody or parameters) */ export type PageParameterProperties = { [key: string]: any; }; export type PageParameters = PageParametersBase; /** * The set of properties that appear in a paginated operation's response */ export interface PageInfo { [key: string]: any; } export interface PageBase extends Pageable { }