lingjing/node_modules/next/dist/server/route-matcher-providers/helpers/manifest-loaders/node-manifest-loader.d.ts
2026-02-23 09:51:43 +00:00

8 lines
279 B
TypeScript

import type { Manifest, ManifestLoader } from './manifest-loader';
export declare class NodeManifestLoader implements ManifestLoader {
private readonly distDir;
constructor(distDir: string);
static require(id: string): any;
load(name: string): Manifest | null;
}