UNPKG

@microsoft/windows-admin-center-sdk

Version:

Microsoft - Windows Admin Center Shell

26 lines (25 loc) 605 B
/** * the log parser class. */ export declare class LogParser { private filePath; private fileWriter; private errorUpdaterAngular15; private messages; /** * the constructor. * @param filePath the file path. * @param fileName the file name. */ constructor(filePath: string, fileName?: string); /** * the update function. * @param filePath the file path. * @param fileName the file name. */ update(filePath: string, fileName?: string): void; /** * the run function to resolve the errors. */ run(): Promise<void>; }