UNPKG

sfdx-experiences-plugin

Version:
9 lines (8 loc) 447 B
/** * Copies the given source route file to the given target route file. Transforms app page IDs if given. * * @param {string} sourceFile Path to the source route file. * @param {string} targetFile Path to the target route file. * @param {Map<string, string>} [appPageIdMap] Optional mapping of app page IDs. */ export default function copyRouteFile(sourceFile: string, targetFile: string, appPageIdMap?: Map<string, string>): void;