[ci] format

This commit is contained in:
matthewp 2022-11-28 16:08:25 +00:00 committed by fredkbot
parent 731e99df87
commit f90a36873c

View file

@ -1047,7 +1047,10 @@ export type GetHydrateCallback = () => Promise<() => void | Promise<void>>;
rss(): never; 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 GetStaticPathsResult = GetStaticPathsItem[];
export type GetStaticPathsResultKeyed = GetStaticPathsResult & { export type GetStaticPathsResultKeyed = GetStaticPathsResult & {
keyed: Map<string, GetStaticPathsItem>; keyed: Map<string, GetStaticPathsItem>;