Files
Homarr/packages/db/index.ts

13 lines
324 B
TypeScript

import Database from "better-sqlite3";
import { database } from "./driver";
export * from "drizzle-orm";
export const db = database;
export type Database = typeof db;
export type { HomarrDatabaseMysql } from "./driver";
export { handleDiffrentDbDriverOperationsAsync as handleTransactionsAsync } from "./transactions";