tdpw
Version:
CLI tool for uploading Playwright test reports to TestDino platform with Azure storage support
16 lines • 414 B
TypeScript
/**
* Help command implementation
*/
import { CLIOptions, Command } from '../../types';
/**
* Help command to display usage information
*/
export declare class HelpCommand implements Command {
readonly name = "help";
readonly description = "Display help information";
/**
* Execute the help command
*/
execute(_options: CLIOptions): Promise<void>;
}
//# sourceMappingURL=help.d.ts.map