datasquirel/dist/package-shared/utils/grab-dsql-connection.d.ts
Benjamin Toby d55fe64d47 Updates
2025-01-14 11:14:50 +01:00

21 lines
365 B
TypeScript

import { ServerlessMysql } from "serverless-mysql";
type Param = {
/**
* Read Only?
*/
ro?: boolean;
/**
* Full Access?
*/
fa?: boolean;
/**
* Full Access?
*/
noDb?: boolean;
};
/**
* # Grab General CONNECTION for DSQL
*/
export default function grabDSQLConnection(param?: Param): ServerlessMysql;
export {};