refactor(channels): hide local helper types · openclaw/openclaw@47059e4
openclaw
·
2026-06-17
·
via Recent Commits to openclaw:main
Skip to content
Navigation Menu
Saved searches
Use saved searches to filter your results more quickly
Sign up
Commit 47059e4
refactor(channels): hide local helper types
3 files changed
Lines changed: 3 additions & 3 deletions
Lines changed: 1 addition & 1 deletion
| Original file line number | Diff line number | Diff line change |
|---|
@@ -27,7 +27,7 @@ import {
|
27 | 27 | } from "./plugins/session-conversation.js"; |
28 | 28 | |
29 | 29 | /** Resolved model override for a channel conversation plus the config key that matched. */ |
30 | | -export type ChannelModelOverride = { |
| 30 | +type ChannelModelOverride = { |
31 | 31 | channel: string; |
32 | 32 | model: string; |
33 | 33 | matchKey?: string; |
|
Lines changed: 1 addition & 1 deletion
| Original file line number | Diff line number | Diff line change |
|---|
@@ -2,7 +2,7 @@
|
2 | 2 | import type { ChannelProgressDraftLine } from "./streaming.js"; |
3 | 3 | |
4 | 4 | /** Progress draft state can mix legacy plain text lines with keyed structured lines. */ |
5 | | -export type ProgressDraftLine = string | ChannelProgressDraftLine; |
| 5 | +type ProgressDraftLine = string | ChannelProgressDraftLine; |
6 | 6 | |
7 | 7 | /** |
8 | 8 | * Removes a keyed structured progress line while preserving plain text draft lines. |
|
Lines changed: 1 addition & 1 deletion
| Original file line number | Diff line number | Diff line change |
|---|
@@ -6,7 +6,7 @@ import type {
|
6 | 6 | } from "../plugins/channel-registry-state.types.js"; |
7 | 7 | import { getActivePluginChannelRegistrySnapshotFromState } from "../plugins/runtime-channel-state.js"; |
8 | 8 | |
9 | | -export type RegisteredChannelPluginEntry = ActivePluginChannelRegistration & { |
| 9 | +type RegisteredChannelPluginEntry = ActivePluginChannelRegistration & { |
10 | 10 | plugin: ActivePluginChannelRegistration["plugin"] & { |
11 | 11 | id?: string | null; |
12 | 12 | meta?: { |
|
此内容由惯性聚合(RSS阅读器)自动聚合整理,仅供阅读参考。 原文来自 — 版权归原作者所有。
0 commit comments