Type Alias PaginateData<BodyType, ElementType>

PaginateData<BodyType, ElementType>: {
    response: Response<BodyType>;
    currentItems: ElementType[];
    allItems: ElementType[];
}

Type Parameters

  • BodyType
  • ElementType