UNPKG

@graphql-mesh/transport-mysql

Version:
11 lines (10 loc) 257 B
/// <reference types="node" /> import type { Connection } from 'mysql'; export interface MySQLContext { mysqlConnection: Connection; } export interface MySQLSSLOptions { rejectUnauthorized?: boolean; caPath?: string; ca?: string | Buffer; }