We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 76f9f11 + 904f247 commit dc6162fCopy full SHA for dc6162f
index.d.ts
@@ -1,14 +1,14 @@
1
import stream = require('stream');
2
import pg = require('pg');
3
4
-declare interface TlsOptions {
+export declare interface TlsOptions {
5
rejectUnauthorized?: boolean;
6
ca?: string;
7
key?: string;
8
cert?: string;
9
}
10
11
-declare interface Config {
+export declare interface Config {
12
user?: string;
13
database?: string;
14
password?: string | (() => string | Promise<string>);
@@ -53,4 +53,4 @@ declare class ServerlessClient {
53
on(...args): void
54
55
56
-export = ServerlessClient
+export default ServerlessClient
0 commit comments