7 lines
178 B
TypeScript
7 lines
178 B
TypeScript
import { type BunMariaDBConfig } from "../types";
|
|
type Params = {
|
|
config: BunMariaDBConfig;
|
|
};
|
|
export default function setMariaDBClient({ config }: Params): void;
|
|
export {};
|