UNPKG

@matthewbonig/rds-tools

Version:

A construct for working with RDS SQL servers

14 lines (13 loc) 376 B
import { IProvider } from './provider'; export declare class MySqlProvider implements IProvider { private connection; private readonly connectionPromise; constructor(props: { password: string; databaseName: string; port: string | undefined; host: string; username: string; }); query(script: string): Promise<any>; }