Skip to content

Commit

Permalink
[ci] format
Browse files Browse the repository at this point in the history
  • Loading branch information
matthewp authored and astrobot-houston committed Nov 28, 2022
1 parent 731e99d commit f90a368
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion packages/astro/src/@types/astro.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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>;
Expand Down

0 comments on commit f90a368

Please sign in to comment.