Files
clawdbot/src/browser/client-actions-types.ts
2025-12-20 03:27:12 +00:00

15 lines
243 B
TypeScript

export type BrowserActionOk = { ok: true };
export type BrowserActionTabResult = {
ok: true;
targetId: string;
url?: string;
};
export type BrowserActionPathResult = {
ok: true;
path: string;
targetId: string;
url?: string;
};