import { NormalizedDiagnostic } from "./logger.js"; //#region src/FileDiagnosticManager.d.ts declare class FileDiagnosticManager { diagnostics: NormalizedDiagnostic[]; /** * Initialize and reset the diagnostics array */ initWith(diagnostics: NormalizedDiagnostic[]): void; getDiagnostics(fileName?: string): NormalizedDiagnostic[]; updateByFileId(fileId: string, next: NormalizedDiagnostic[] | null): void; } //#endregion export { FileDiagnosticManager }; //# sourceMappingURL=FileDiagnosticManager.d.ts.map