UNPKG

tdpw

Version:

CLI tool for uploading Playwright test reports to TestDino platform with Azure storage support

16 lines 511 B
import { ProgressTracker } from '../types'; /** * Clean, professional progress tracker with minimal styling */ export declare class ConsoleProgressTracker implements ProgressTracker { start(message: string): void; update(message: string): void; succeed(message: string): void; fail(message: string): void; warn(message: string): void; } /** * Factory to create a progress tracker */ export declare function createProgressTracker(): ProgressTracker; //# sourceMappingURL=progress.d.ts.map