0
Fork 0
mirror of https://github.com/withastro/astro.git synced 2024-12-30 22:03:56 -05:00

update comment in packages/astro/src/types/public/common.ts (#12782)

This commit is contained in:
Hiromasa Fujimori 2024-12-20 16:17:39 +09:00 committed by GitHub
parent 49cc5d7266
commit f3d83854aa
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
---
update comment in packages/astro/src/types/public/common.ts

View file

@ -72,7 +72,7 @@ export interface Page<T = any> {
next: string | undefined;
/** url of the first page (if the current page is not the first page) */
first: string | undefined;
/** url of the next page (if the current page in not the last page) */
/** url of the last page (if the current page is not the last page) */
last: string | undefined;
};
}