chore: include pre-built dist for github install
This commit is contained in:
+17
@@ -0,0 +1,17 @@
|
||||
import { z } from "zod";
|
||||
export declare const BrowserAutomationProviderSchema: z.ZodEnum<{
|
||||
playwright: "playwright";
|
||||
"agent-browser": "agent-browser";
|
||||
"dev-browser": "dev-browser";
|
||||
"playwright-cli": "playwright-cli";
|
||||
}>;
|
||||
export declare const BrowserAutomationConfigSchema: z.ZodObject<{
|
||||
provider: z.ZodDefault<z.ZodEnum<{
|
||||
playwright: "playwright";
|
||||
"agent-browser": "agent-browser";
|
||||
"dev-browser": "dev-browser";
|
||||
"playwright-cli": "playwright-cli";
|
||||
}>>;
|
||||
}, z.core.$strip>;
|
||||
export type BrowserAutomationProvider = z.infer<typeof BrowserAutomationProviderSchema>;
|
||||
export type BrowserAutomationConfig = z.infer<typeof BrowserAutomationConfigSchema>;
|
||||
Reference in New Issue
Block a user