@hyperbrowser/agent
Version:
Hyperbrowsers Web Agent
8 lines (7 loc) • 301 B
TypeScript
import { z } from "zod";
import { AgentActionDefinition } from "../../types";
export declare const GoToUrlAction: z.ZodObject<{
url: z.ZodString;
}, z.core.$strip>;
export type GoToUrlActionType = z.infer<typeof GoToUrlAction>;
export declare const GoToURLActionDefinition: AgentActionDefinition;