import type { Prettify } from "@/types/utils.js"; import type { PoolConfig as RawPoolConfig } from "pg"; export type PoolConfig = Prettify; export type DatabaseConfig = | { kind: "sqlite"; directory: string } | { kind: "postgres"; poolConfig: PoolConfig; schema: string; };