mirror of
https://github.com/openclaw/openclaw.git
synced 2026-03-13 19:10:39 +00:00
15 lines
243 B
TypeScript
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;
|
|
};
|