mirror of
https://github.com/openclaw/openclaw.git
synced 2026-03-26 01:11:37 +00:00
17 lines
395 B
TypeScript
17 lines
395 B
TypeScript
import {
|
|
monitorSignalProvider,
|
|
probeSignal,
|
|
signalMessageActions,
|
|
sendMessageSignal,
|
|
} from "../../plugin-sdk/signal.js";
|
|
import type { PluginRuntimeChannel } from "./types-channel.js";
|
|
|
|
export function createRuntimeSignal(): PluginRuntimeChannel["signal"] {
|
|
return {
|
|
probeSignal,
|
|
sendMessageSignal,
|
|
monitorSignalProvider,
|
|
messageActions: signalMessageActions,
|
|
};
|
|
}
|