openclaw / src /browser /client-actions-types.ts
quinnz's picture
change port 18789 to 7860
3509093
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;
};
export type BrowserActionTargetOk = { ok: true; targetId: string };