mirror of
https://github.com/openclaw/openclaw.git
synced 2026-04-15 03:01:02 +00:00
fix(memory-core): align vector write db typing
This commit is contained in:
@@ -1,6 +1,8 @@
|
||||
import type { SQLInputValue } from "node:sqlite";
|
||||
|
||||
type VectorWriteDb = {
|
||||
prepare: (sql: string) => {
|
||||
run: (...params: unknown[]) => void;
|
||||
run: (...params: SQLInputValue[]) => unknown;
|
||||
};
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user