openclaw
Version:
Multi-channel AI gateway with extensible messaging integrations
12 lines • 602 B
TypeScript
import { n as PluginRuntime } from "../../agent-harness-runtime-pGCreG_J.js";
import { i as ReefFriendManager, r as ReviewApprovalStore, t as ReefMessageFlow } from "../../flow-8Q-tqLTU.js";
//#region extensions/reef/src/runtime.d.ts
type ActiveReef = {
flow: ReefMessageFlow;
friends: ReefFriendManager;
reviews: ReviewApprovalStore;
};
declare const setReefRuntime: (next: PluginRuntime) => void, getOptionalReefRuntime: () => PluginRuntime | null, getReefRuntime: () => PluginRuntime;
export declare function getActiveReef(): ActiveReef;
//#endregion
export { getReefRuntime, setReefRuntime };