sfdx-experiences-plugin
Version:
SFDX plugin to manage ExperienceBundle metadata
9 lines (8 loc) • 442 B
TypeScript
/**
* Copies the given source view file to the given target view file. Transforms app page IDs if given.
*
* @param {string} sourceFile Path to the source view file.
* @param {string} targetFile Path to the target view file.
* @param {Map<string, string>} [appPageIdMap] Optional mapping of app page IDs.
*/
export default function copyViewFile(sourceFile: string, targetFile: string, appPageIdMap?: Map<string, string>): void;