mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-19 10:14:46 +00:00
15 lines
575 B
TypeScript
15 lines
575 B
TypeScript
/**
|
|
* @deprecated Compatibility facade for older third-party channel packages that
|
|
* imported the previous Mattermost-shaped helper bundle. New plugins should
|
|
* import the generic SDK subpaths directly.
|
|
*/
|
|
export { resolveControlCommandGate } from "./command-auth.js";
|
|
export { formatPairingApproveHint } from "./channel-plugin-common.js";
|
|
export type { HistoryEntry } from "./reply-history.js";
|
|
export {
|
|
createChannelHistoryWindow,
|
|
buildPendingHistoryContextFromMap,
|
|
clearHistoryEntriesIfEnabled,
|
|
recordPendingHistoryEntryIfEnabled,
|
|
} from "./reply-history.js";
|