UNPKG

sfdx-experiences-plugin

Version:
9 lines (8 loc) 442 B
/** * 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;