@graphql-mesh/transport-mysql
Version:
13 lines (12 loc) • 322 B
text/typescript
import type { MySQLSSLOptions } from './types.cjs';
export declare function getConnectionOptsFromEndpointUri(endpointUri: string): {
user: string;
password: string;
protocol: string;
host: string;
port: number;
database: string;
trace: boolean;
debug: boolean;
ssl: MySQLSSLOptions;
};