[ci] format
This commit is contained in:
parent
731e99df87
commit
f90a36873c
1 changed files with 4 additions and 1 deletions
|
@ -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>;
|
||||||
|
|
Loading…
Reference in a new issue