UNPKG
@matthewbonig/rds-tools
Version:
latest (2.1.0)
2.1.0
2.0.19
2.0.18
2.0.17
2.0.16
2.0.15
2.0.14
2.0.13
2.0.12
2.0.11
2.0.10
2.0.9
2.0.8
2.0.7
2.0.6
2.0.5
2.0.4
2.0.3
2.0.2
2.0.1
1.98.0
1.97.0
1.92.0
1.91.0
1.90.0
1.89.1
1.89.0
0.2.2
0.2.1
0.2.0
0.1.0
0.0.14
0.0.13
0.0.12
0.0.11
0.0.10
0.0.9
0.0.8
0.0.7
0.0.6
0.0.5
0.0.4
0.0.3
A construct for working with RDS SQL servers
github.com/mbonig/rds-tools
mbonig/rds-tools
@matthewbonig/rds-tools
/
lib
/
handlers
/
postgres-provider.d.ts
13 lines
(12 loc)
•
339 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
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
>; }