donobu
Version:
Create browser automations with an LLM agent and replay them as Playwright scripts.
47 lines • 1.31 kB
TypeScript
import { z } from 'zod/v4';
export declare const BrowserStorageStateSchema: z.ZodObject<{
cookies: z.ZodArray<z.ZodType<{
name: string;
value: string;
domain: string;
path: string;
expires: number;
httpOnly: boolean;
secure: boolean;
sameSite: "Strict" | "Lax" | "None";
}, unknown, z.core.$ZodTypeInternals<{
name: string;
value: string;
domain: string;
path: string;
expires: number;
httpOnly: boolean;
secure: boolean;
sameSite: "Strict" | "Lax" | "None";
}, unknown>>>;
origins: z.ZodArray<z.ZodType<{
origin: string;
localStorage: Array<{
name: string;
value: string;
}>;
} & {
sessionStorage?: Array<{
name: string;
value: string;
}>;
}, unknown, z.core.$ZodTypeInternals<{
origin: string;
localStorage: Array<{
name: string;
value: string;
}>;
} & {
sessionStorage?: Array<{
name: string;
value: string;
}>;
}, unknown>>>;
}, z.core.$strip>;
export type BrowserStorageState = z.infer<typeof BrowserStorageStateSchema>;
//# sourceMappingURL=BrowserStorageState.d.ts.map