mirror of
https://github.com/openclaw/openclaw.git
synced 2026-04-06 06:41:08 +00:00
30 lines
862 B
TypeScript
30 lines
862 B
TypeScript
// Pure channel contract types used by plugin implementations and tests.
|
|
export type {
|
|
BaseProbeResult,
|
|
BaseTokenResolution,
|
|
ChannelAgentTool,
|
|
ChannelAccountSnapshot,
|
|
ChannelApprovalAdapter,
|
|
ChannelApprovalCapability,
|
|
ChannelCommandConversationContext,
|
|
ChannelGroupContext,
|
|
ChannelMessageActionAdapter,
|
|
ChannelMessageActionContext,
|
|
ChannelMessageActionDiscoveryContext,
|
|
ChannelMessageActionName,
|
|
ChannelMessageToolDiscovery,
|
|
ChannelMessageToolSchemaContribution,
|
|
ChannelStructuredComponents,
|
|
ChannelStatusIssue,
|
|
ChannelThreadingContext,
|
|
ChannelThreadingToolContext,
|
|
} from "../channels/plugins/types.js";
|
|
|
|
export type {
|
|
ChannelDirectoryAdapter,
|
|
ChannelDoctorAdapter,
|
|
ChannelDoctorConfigMutation,
|
|
ChannelDoctorEmptyAllowlistAccountContext,
|
|
ChannelDoctorSequenceResult,
|
|
} from "../channels/plugins/types.adapters.js";
|