refactor: trim browser helper types · openclaw/openclaw@8b62e0f
steipete
·
2026-05-01
·
via Recent Commits to openclaw:main
| Original file line number | Diff line number | Diff line change |
|---|
@@ -24,7 +24,7 @@ export {
|
24 | 24 | } from "openclaw/plugin-sdk/text-runtime"; |
25 | 25 | export { normalizeOptionalLowercaseString }; |
26 | 26 | |
27 | | -export type PortRange = { start: number; end: number }; |
| 27 | +type PortRange = { start: number; end: number }; |
28 | 28 | |
29 | 29 | const DEFAULT_BROWSER_CDP_PORT_RANGE_START = 18800; |
30 | 30 | const DEFAULT_BROWSER_CDP_PORT_RANGE_END = 18899; |
@@ -61,7 +61,7 @@ export function deriveDefaultBrowserCdpPortRange(browserControlPort: number): Po
|
61 | 61 | }; |
62 | 62 | } |
63 | 63 | |
64 | | -export type BooleanParseOptions = { |
| 64 | +type BooleanParseOptions = { |
65 | 65 | truthy?: string[]; |
66 | 66 | falsy?: string[]; |
67 | 67 | }; |
|
此内容由惯性聚合(RSS阅读器)自动聚合整理,仅供阅读参考。 原文来自 — 版权归原作者所有。