import { Diagnostic } from'./Diagnostic';
/**
* Represents the result of a format operation on a file, folder or project.
*/exportinterfaceFormatResult {
updatedFilePaths: string[];
fixedDiagnosticsCount: number;
unfixedDiagnostics: Map<string, Diagnostic[]> | Diagnostic[];
}