vibe-tools
Version:
CLI tools for AI agents
15 lines (14 loc) • 477 B
TypeScript
import type { Command, CommandGenerator } from '../../../types';
import type { SharedBrowserCommandOptions } from '../browserOptions';
export type RecordVideoOptions = {
/**, stagehandLogger
* Path to the directory to put videos into.
*/
dir: string;
};
export declare class ActCommand implements Command {
private _debug;
private debug;
execute(query: string, options: SharedBrowserCommandOptions): CommandGenerator;
private performAction;
}