@vizzly-testing/cli
Version:
Visual review platform for UI developers and designers
14 lines (13 loc) • 529 B
TypeScript
/**
* Upload command implementation
* @param {string} screenshotsPath - Path to screenshots
* @param {Object} options - Command options
* @param {Object} globalOptions - Global CLI options
*/
export function uploadCommand(screenshotsPath: string, options?: any, globalOptions?: any): Promise<void>;
/**
* Validate upload options
* @param {string} screenshotsPath - Path to screenshots
* @param {Object} options - Command options
*/
export function validateUploadOptions(screenshotsPath: string, options: any): string[];