refactor: trim local type exports · openclaw/openclaw@5046cbc
steipete
·
2026-05-02
·
via Recent Commits to openclaw:main
| Original file line number | Diff line number | Diff line change |
|---|
@@ -5,16 +5,16 @@ export type CliCommandPluginLoadPolicy =
|
5 | 5 | | "always" |
6 | 6 | | "text-only" |
7 | 7 | | ((ctx: { argv: string[]; commandPath: string[]; jsonOutputMode: boolean }) => boolean); |
8 | | -export type CliRouteConfigGuardPolicy = "never" | "always" | "when-suppressed"; |
| 8 | +type CliRouteConfigGuardPolicy = "never" | "always" | "when-suppressed"; |
9 | 9 | export type CliPluginRegistryScope = "all" | "channels" | "configured-channels"; |
10 | 10 | export type CliPluginRegistryPolicy = { |
11 | 11 | scope: CliPluginRegistryScope; |
12 | 12 | }; |
13 | 13 | export type CliNetworkProxyPolicy = "default" | "bypass"; |
14 | | -export type CliNetworkProxyPolicyResolver = |
| 14 | +type CliNetworkProxyPolicyResolver = |
15 | 15 | | CliNetworkProxyPolicy |
16 | 16 | | ((ctx: { argv: string[]; commandPath: string[] }) => CliNetworkProxyPolicy); |
17 | | -export type CliRoutedCommandId = |
| 17 | +type CliRoutedCommandId = |
18 | 18 | | "health" |
19 | 19 | | "status" |
20 | 20 | | "gateway-status" |
|
此内容由惯性聚合(RSS阅读器)自动聚合整理,仅供阅读参考。 原文来自 — 版权归原作者所有。