mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-08 08:20:43 +00:00
30 lines
801 B
TypeScript
30 lines
801 B
TypeScript
export type {
|
|
ChannelConfigUiHint,
|
|
ChannelPlugin,
|
|
OpenClawConfig,
|
|
OpenClawPluginApi,
|
|
PluginCommandContext,
|
|
PluginRuntime,
|
|
ChannelOutboundSessionRouteParams,
|
|
} from "./core.js";
|
|
|
|
import { createChannelPluginBase as createChannelPluginBaseFromCore } from "./core.js";
|
|
|
|
export const createChannelPluginBase: typeof createChannelPluginBaseFromCore = (params) =>
|
|
createChannelPluginBaseFromCore(params);
|
|
|
|
export {
|
|
buildChannelConfigSchema,
|
|
buildChannelOutboundSessionRoute,
|
|
buildThreadAwareOutboundSessionRoute,
|
|
clearAccountEntryFields,
|
|
createChatChannelPlugin,
|
|
defineChannelPluginEntry,
|
|
defineSetupPluginEntry,
|
|
parseOptionalDelimitedEntries,
|
|
recoverCurrentThreadSessionId,
|
|
stripChannelTargetPrefix,
|
|
stripTargetKindPrefix,
|
|
tryReadSecretFileSync,
|
|
} from "./core.js";
|