Fix GetStaticPathsOptions types (#3341)

This commit is contained in:
Yuji Sugiura 2022-05-12 00:13:47 +09:00 committed by GitHub
parent 352fc3166f
commit efe4f1a3ef
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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 };