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