tdpw
Version:
CLI tool for uploading Playwright test reports to TestDino platform with Azure storage support
39 lines • 854 B
TypeScript
/**
* TestDino CLI Entry Point
* Main entry point for the tdpw CLI tool
*/
/**
* CLI Application main class
*/
declare class TestDinoCLI {
private readonly uploadCommand;
private readonly helpCommand;
constructor();
/**
* Main application entry point
*/
run(args?: string[]): Promise<void>;
/**
* Check if help should be displayed
*/
private shouldShowHelp;
/**
* Check if version should be displayed
*/
private shouldShowVersion;
/**
* Professional error handling with appropriate messaging
*/
private handleError;
/**
* Get appropriate exit code for error type
*/
private getExitCode;
}
/**
* Application execution
*/
declare function main(): Promise<void>;
export { TestDinoCLI, main };
//# sourceMappingURL=index.d.ts.map