@hyperbrowser/agent
Version:
Hyperbrowsers Web Agent
15 lines (14 loc) • 438 B
TypeScript
import { z } from "zod";
import { AgentActionDefinition } from "../../types";
export declare const SelectOptionAction: z.ZodObject<{
index: z.ZodNumber;
text: z.ZodString;
}, "strip", z.ZodTypeAny, {
text: string;
index: number;
}, {
text: string;
index: number;
}>;
export type SelectOptionActionType = z.infer<typeof SelectOptionAction>;
export declare const SelectOptionActionDefinition: AgentActionDefinition;