refactor(config): hide local helper types · openclaw/openclaw@97b9bd1
vincentkoc
·
2026-06-17
·
via Recent Commits to openclaw:main
| Original file line number | Diff line number | Diff line change |
|---|
@@ -438,7 +438,7 @@ function resolveConfigAuditAppendRecord(params: ConfigAuditAppendParams): Config
|
438 | 438 | return redactSecrets(record as ConfigAuditRecord); |
439 | 439 | } |
440 | 440 | |
441 | | -export type ConfigAuditScrubResult = { |
| 441 | +type ConfigAuditScrubResult = { |
442 | 442 | scanned: number; |
443 | 443 | rewritten: number; |
444 | 444 | skipped: number; |
|
| Original file line number | Diff line number | Diff line change |
|---|
@@ -2,7 +2,7 @@
|
2 | 2 | import { sanitizeTerminalText } from "../../packages/terminal-core/src/safe-text.js"; |
3 | 3 | import type { ConfigValidationIssue } from "./types.js"; |
4 | 4 | |
5 | | -export type ConfigIssueLineInput = { |
| 5 | +type ConfigIssueLineInput = { |
6 | 6 | path?: string | null; |
7 | 7 | message: string; |
8 | 8 | }; |
|
| Original file line number | Diff line number | Diff line change |
|---|
@@ -33,7 +33,7 @@ type ConfigMcpWriteResult =
|
33 | 33 | | { ok: false; path: string; error: string }; |
34 | 34 | |
35 | 35 | /** Include/exclude tool selection stored for a configured MCP server. */ |
36 | | -export type McpServerToolSelection = { |
| 36 | +type McpServerToolSelection = { |
37 | 37 | include?: string[]; |
38 | 38 | exclude?: string[]; |
39 | 39 | }; |
|
此内容由惯性聚合(RSS阅读器)自动聚合整理,仅供阅读参考。 原文来自 — 版权归原作者所有。