fix(extensions): split runtime store type imports

This commit is contained in:
Vincent Koc
2026-04-10 07:07:34 +01:00
parent 4aa61cf8ca
commit d752ff7191
5 changed files with 5 additions and 5 deletions

View File

@@ -1,5 +1,5 @@
import { createPluginRuntimeStore } from "openclaw/plugin-sdk/runtime-store";
import type { PluginRuntime } from "../runtime-api.js";
import type { PluginRuntime } from "openclaw/plugin-sdk/runtime-store";
const { setRuntime: setNextcloudTalkRuntime, getRuntime: getNextcloudTalkRuntime } =
createPluginRuntimeStore<PluginRuntime>("Nextcloud Talk runtime not initialized");