diff options
author | 2022-11-28 16:08:25 +0000 | |
---|---|---|
committer | 2022-11-28 16:08:25 +0000 | |
commit | f90a36873cb7e7a232f147d00d5eb2d2eda9fa16 (patch) | |
tree | c62f393a9c920173936f1bf4b8b896c79948adf6 | |
parent | 731e99df875d40e40f6b33feddd940c3122a5f83 (diff) | |
download | astro-f90a36873cb7e7a232f147d00d5eb2d2eda9fa16.tar.gz astro-f90a36873cb7e7a232f147d00d5eb2d2eda9fa16.tar.zst astro-f90a36873cb7e7a232f147d00d5eb2d2eda9fa16.zip |
[ci] format
-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>; |