next
Version:
The React Framework
13 lines (12 loc) • 445 B
TypeScript
import type { webpack } from 'next/dist/compiled/webpack/webpack';
export type EdgeAppRouteLoaderQuery = {
absolutePagePath: string;
page: string;
appDirLoader: string;
preferredRegion: string | string[] | undefined;
nextConfig: string;
middlewareConfig: string;
cacheHandlers: string;
};
declare const EdgeAppRouteLoader: webpack.LoaderDefinitionFunction<EdgeAppRouteLoaderQuery>;
export default EdgeAppRouteLoader;