0
Fork 0
mirror of https://github.com/withastro/astro.git synced 2025-03-31 23:31:30 -05:00

fix(types): change page.size to 10 in JSDoc comment (#11561)

This commit is contained in:
Armand Philippot 2024-07-26 15:16:26 +02:00 committed by GitHub
parent 02c85b5412
commit 904f1e535a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 6 additions and 1 deletions

View file

@ -0,0 +1,5 @@
---
'astro': patch
---
Uses the correct pageSize default in `page.size` JSDoc comment

View file

@ -2704,7 +2704,7 @@ export interface Page<T = any> {
total: number;
/** the current page number, starting from 1 */
currentPage: number;
/** number of items per page (default: 25) */
/** number of items per page (default: 10) */
size: number;
/** number of last page */
lastPage: number;