UNPKG

@matthewbonig/rds-tools

Version:

A construct for working with RDS SQL servers

13 lines (12 loc) 339 B
import { IProvider } from './provider'; export declare class PostgresSqlProvider implements IProvider { private client; constructor(props: { password: string; databaseName?: string; port: string | undefined; host: string; username: string; }); query(script: string): Promise<any>; }