This repository has been archived on 2025-07-07. You can view files and clone it, but cannot push or open issues or pull requests.
Files
eternos/frontend/node_modules/workbox-webpack-plugin/build/lib/relative-to-output-path.d.ts
2025-01-13 09:33:52 +03:00

12 lines
421 B
TypeScript

import type { Compilation } from 'webpack';
/**
* @param {Object} compilation The webpack compilation.
* @param {string} swDest The original swDest value.
*
* @return {string} If swDest was not absolute, the returns swDest as-is.
* Otherwise, returns swDest relative to the compilation's output path.
*
* @private
*/
export declare function relativeToOutputPath(compilation: Compilation, swDest: string): string;