12 lines
293 B
TypeScript
12 lines
293 B
TypeScript
import type { BunMariaDBConfig } from "../types";
|
|
type Params = {
|
|
config?: BunMariaDBConfig;
|
|
};
|
|
export default function grabDirNames(params?: Params): {
|
|
ROOT_DIR: string;
|
|
BUN_MARIADB_DIR: string;
|
|
BUN_MARIADB_TEMP_DIR: string;
|
|
BUN_MARIADB_LIVE_SCHEMA: string;
|
|
};
|
|
export {};
|