next
Version:
The React Framework
9 lines (8 loc) • 450 B
TypeScript
/// <reference types="node" />
import '../next-server/server/node-polyfill-fetch';
declare type RuntimeConfig = any;
export declare function loadStaticPaths(distDir: string, pathname: string, serverless: boolean, config: RuntimeConfig, locales?: string[], defaultLocale?: string): Promise<Omit<import("../types").GetStaticPathsResult<import("querystring").ParsedUrlQuery>, "paths"> & {
paths: string[];
encodedPaths: string[];
}>;
export {};