mirror of
https://github.com/openclaw/openclaw.git
synced 2026-03-19 14:00:51 +00:00
17 lines
410 B
TypeScript
17 lines
410 B
TypeScript
import {
|
|
monitorSignalProvider,
|
|
probeSignal,
|
|
signalMessageActions,
|
|
sendMessageSignal,
|
|
} from "../../../extensions/signal/runtime-api.js";
|
|
import type { PluginRuntimeChannel } from "./types-channel.js";
|
|
|
|
export function createRuntimeSignal(): PluginRuntimeChannel["signal"] {
|
|
return {
|
|
probeSignal,
|
|
sendMessageSignal,
|
|
monitorSignalProvider,
|
|
messageActions: signalMessageActions,
|
|
};
|
|
}
|