node-sqlite/dist/utils/grab-db-dir.d.ts
2026-03-08 08:32:12 +01:00

11 lines
234 B
TypeScript

import type { NSQLiteConfig } from "../types";
type Params = {
config: NSQLiteConfig;
};
export default function grabDBDir({ config }: Params): {
db_dir: string;
backup_dir: string;
db_file_path: string;
};
export {};