import "./memory-runtime.js"; type MemoryRuntimeTestApi = { resetStandaloneMemoryRegistrySlot(): void; }; export function resetStandaloneMemoryRegistrySlot(): void { const api = (globalThis as Record)[ Symbol.for("openclaw.memoryRuntimeTestApi") ] as MemoryRuntimeTestApi; api.resetStandaloneMemoryRegistrySlot(); }