bpms_site/.svn/pristine/8a/8a382d9ccef686f6a5be902ae6513905f37d0f42.svn-base
2025-11-02 16:38:49 +03:30

11 lines
434 B
Plaintext

import type { webpack } from 'next/dist/compiled/webpack/webpack';
export declare function formatModuleTrace(compiler: webpack.Compiler, moduleTrace: any[]): {
lastInternalFileName: string;
invalidImportMessage: string;
formattedModuleTrace: string;
};
export declare function getModuleTrace(module: any, compilation: webpack.Compilation, compiler: webpack.Compiler): {
moduleTrace: any[];
isPagesDir: boolean;
};