8 lines
178 B
TypeScript
8 lines
178 B
TypeScript
import type { ConnectionConfig } from "mariadb";
|
|
type Return = ConnectionConfig["ssl"] | undefined;
|
|
/**
|
|
* # Grab SSL
|
|
*/
|
|
export default function grabDbSSL(): Return;
|
|
export {};
|