@microsoft/windows-admin-center-sdk
Version:
Microsoft - Windows Admin Center Shell
17 lines (16 loc) • 506 B
TypeScript
export declare class FileReplacementUpgrader {
private sourceContentFilePath;
private writeToFilePath;
private messages;
/**
* the constructor.
* @param sourceContentFilePath the source file path.
* @param writeToFilePath the write to file path.
* @param fileName the file name.
*/
constructor(sourceContentFilePath: string, writeToFilePath: string, fileName?: string);
/**
* the run function to resolve the errors.
*/
run(): Promise<void>;
}