fix(memory-core): align vector write db typing

This commit is contained in:
Vincent Koc
2026-04-06 21:54:32 +01:00
parent c7e0150af2
commit b96589b1fc

View File

@@ -1,6 +1,8 @@
import type { SQLInputValue } from "node:sqlite";
type VectorWriteDb = {
prepare: (sql: string) => {
run: (...params: unknown[]) => void;
run: (...params: SQLInputValue[]) => unknown;
};
};