import { HandlerContext } from "@atomist/automation-client"; import { SdmGoalEvent } from "@atomist/sdm"; import { ProgressLog } from "@atomist/sdm/spi/log/ProgressLog"; /** * Persistent Rolar log that displays in the Dashboard */ export declare class DashboardDisplayProgressLog implements ProgressLog { private readonly context; private readonly sdmGoal; private readonly rolarProgressLog; constructor(rolarBaseUrl: string, bufferSize: number, flushInterval: number, context: HandlerContext, sdmGoal: SdmGoalEvent); readonly name: string; readonly url: string; isAvailable(): Promise; write(what: string): void; flush(): Promise; close(): Promise; } export declare function constructLogPath(context: HandlerContext, sdmGoal: SdmGoalEvent): string[]; //# sourceMappingURL=DashboardDisplayProgressLog.d.ts.map