feat(persistance): add additional ops for sqlite

This commit is contained in:
2026-01-17 14:43:40 -03:00
parent fcee6e0b19
commit ab2aca1d97
2 changed files with 23 additions and 1 deletions

View File

@@ -0,0 +1,2 @@
export type QueryResult<T> = { rows: T[]};
export type BatchOp = [string, any[]];