diff options
-rw-r--r-- | packages/astro/src/@types/astro.ts | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/packages/astro/src/@types/astro.ts b/packages/astro/src/@types/astro.ts index b0b19eb17..a6bafdad7 100644 --- a/packages/astro/src/@types/astro.ts +++ b/packages/astro/src/@types/astro.ts @@ -1047,7 +1047,10 @@ export type GetHydrateCallback = () => Promise<() => void | Promise<void>>; rss(): never; } -export type GetStaticPathsItem = { params: { [K in keyof Params]: Params[K] | number }; props?: Props }; +export type GetStaticPathsItem = { + params: { [K in keyof Params]: Params[K] | number }; + props?: Props; +}; export type GetStaticPathsResult = GetStaticPathsItem[]; export type GetStaticPathsResultKeyed = GetStaticPathsResult & { keyed: Map<string, GetStaticPathsItem>; |