All Downloads are FREE. Search and download functionalities are using the official Maven repository.

generator.client.pagination.domain.Page.ts.mustache Maven / Gradle / Ivy

There is a newer version: 1.22.0
Show newest version
import type { DisplayedOnPage } from './DisplayedOnPage';

export type Page = {
  currentPage: number;
  pagesCount: number;
  hasPrevious: boolean;
  hasNext: boolean;
  totalElementsCount: number;
  displayed: DisplayedOnPage;
  content: Content[];
};




© 2015 - 2024 Weber Informatics LLC | Privacy Policy