Fixes #97: SQLite is now async, optimized, tests

This commit is contained in:
Zef Hemel
2022-10-21 10:00:43 +02:00
parent b9da9b7965
commit c1a78e0105
65 changed files with 329 additions and 142 deletions
+13
View File
@@ -0,0 +1,13 @@
export { DB } from "./src/db.ts";
export { SqliteError } from "./src/error.ts";
export { Status } from "./src/constants.ts";
export type { SqliteOptions } from "./src/db.ts";
export type {
ColumnName,
PreparedQuery,
QueryParameter,
QueryParameterSet,
Row,
RowObject,
} from "./src/query.ts";