summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--packages/astro/src/@types/astro.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/astro/src/@types/astro.ts b/packages/astro/src/@types/astro.ts
index 8a04f21e9..117a1e257 100644
--- a/packages/astro/src/@types/astro.ts
+++ b/packages/astro/src/@types/astro.ts
@@ -770,8 +770,8 @@ export type GetHydrateCallback = () => Promise<
* getStaticPaths() options
* Docs: https://docs.astro.build/reference/api-reference/#getstaticpaths
*/ export interface GetStaticPathsOptions {
- paginate?: PaginateFunction;
- rss?: (...args: any[]) => any;
+ paginate: PaginateFunction;
+ rss: (...args: any[]) => any;
}
export type GetStaticPathsItem = { params: Params; props?: Props };