/** * @param {object} options * @param {string} options.inputDir * @param {string} options.outputDir * @param {(sourceFilePath: string) => string} options.getSourceFilePathFromUrl * @param {(sourceFilePath: string) => string} options.getOutputFilePath * @returns {import('../../types/main.js').DevServerPlugin} */ export function devServerAdjustAssetUrls({ outputDir, getSourceFilePathFromUrl, getOutputFilePath, inputDir, }: { inputDir: string; outputDir: string; getSourceFilePathFromUrl: (sourceFilePath: string) => string; getOutputFilePath: (sourceFilePath: string) => string; }): import('../../types/main.js').DevServerPlugin; //# sourceMappingURL=devServerAdjustAssetUrls.d.ts.map