vibe-tools
Version:
CLI tools for AI agents
12 lines (11 loc) • 414 B
TypeScript
import type { Command, CommandGenerator } from '../../types';
import type { SharedBrowserCommandOptions } from './browserOptions';
interface ElementBrowserOptions extends SharedBrowserCommandOptions {
selector?: string;
text?: boolean;
}
export declare class ElementCommand implements Command {
private config;
execute(query: string, options: ElementBrowserOptions): CommandGenerator;
}
export {};