mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-06 07:30:43 +00:00
23 lines
842 B
TypeScript
23 lines
842 B
TypeScript
// Private runtime barrel for the bundled Twitch extension.
|
|
// Keep this barrel thin and aligned with the local extension surface.
|
|
|
|
export type {
|
|
ChannelAccountSnapshot,
|
|
ChannelCapabilities,
|
|
ChannelGatewayContext,
|
|
ChannelLogSink,
|
|
ChannelMessageActionAdapter,
|
|
ChannelMessageActionContext,
|
|
ChannelMeta,
|
|
ChannelOutboundAdapter,
|
|
ChannelOutboundContext,
|
|
ChannelResolveKind,
|
|
ChannelResolveResult,
|
|
ChannelStatusAdapter,
|
|
} from "openclaw/plugin-sdk/channel-contract";
|
|
export type { ChannelPlugin } from "openclaw/plugin-sdk/channel-core";
|
|
export type { OutboundDeliveryResult } from "openclaw/plugin-sdk/channel-send-result";
|
|
export type { OpenClawConfig } from "openclaw/plugin-sdk/config-types";
|
|
export type { RuntimeEnv } from "openclaw/plugin-sdk/runtime";
|
|
export type { WizardPrompter } from "openclaw/plugin-sdk/setup";
|