9 lines
204 B
TypeScript
9 lines
204 B
TypeScript
type Return = string | (import("tls").SecureContextOptions & {
|
|
rejectUnauthorized?: boolean | undefined;
|
|
}) | undefined;
|
|
/**
|
|
* # Grall SSL
|
|
*/
|
|
export default function grabDbSSL(): Return;
|
|
export {};
|