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