@omnigraph/mysql
Version:
15 lines (14 loc) • 336 B
TypeScript
/// <reference types="node" />
import type { Connection } from 'mysql';
export interface MySQLSSLOptions {
rejectUnauthorized?: boolean;
caPath?: string;
ca?: string | Buffer;
}
export interface MySQLContext {
mysqlConnection: Connection;
}
export interface TableFieldConfig {
table: string;
fields: string[];
}