7 lines
234 B
TypeScript
7 lines
234 B
TypeScript
import type { Connection } from "mariadb";
|
|
import type { DsqlConnectionParam } from "../types";
|
|
/**
|
|
* # Grab General CONNECTION for DSQL
|
|
*/
|
|
export default function grabDBConnection(param?: DsqlConnectionParam): Promise<Connection>;
|