UNPKG

laravelgpt

Version:
13 lines (12 loc) 438 B
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 { execute(query: string, options: SharedBrowserCommandOptions): CommandGenerator; private performAction; }