UNPKG

@matthewbonig/rds-tools

Version:

A construct for working with RDS SQL servers

17 lines (16 loc) 453 B
import { IProvider } from './provider'; export declare class MsSqlProvider implements IProvider { private readonly username; private readonly password; private readonly host; private readonly databaseName; private readonly port; constructor(props: { databaseName?: string; host: string; password: string; username: string; port?: string; }); query(script: string): Promise<any>; }