UNPKG

@microsoft/windows-admin-center-sdk

Version:

Microsoft - Windows Admin Center Shell

15 lines (14 loc) 507 B
import { Updater } from '../../../upgrade/models/updater-interface'; import { ErrorResult } from '../../../upgrade/models/error-result'; /** * the ParameterCountViolationUpdater error handler/updater. */ export declare class ParameterCountViolationUpdater implements Updater { /** * the update function. * @param fileData the file data. * @param error the error object. * @returns the updated file data. */ update(fileData: string, error: ErrorResult): Promise<string>; }