7 lines
195 B
TypeScript
7 lines
195 B
TypeScript
import { type BunMariaDBConfig } from "../types";
|
|
type Params = {
|
|
config: BunMariaDBConfig;
|
|
};
|
|
export default function grabMariaDBClient({ config, }: Params): Bun.SQL | undefined;
|
|
export {};
|