From f90a36873cb7e7a232f147d00d5eb2d2eda9fa16 Mon Sep 17 00:00:00 2001 From: matthewp Date: Mon, 28 Nov 2022 16:08:25 +0000 Subject: [PATCH] [ci] format --- packages/astro/src/@types/astro.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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>; 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;