Skip to content

Commit

Permalink
Merge pull request #67 from perrin4869/feature/improve-library-typings
Browse files Browse the repository at this point in the history
Improve Config.library typings
  • Loading branch information
MatteoGioioso authored Jun 6, 2022
2 parents 5d149bf + e18f95e commit 37f52a9
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions index.d.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import stream = require('stream');
import pg = require('pg');

declare interface TlsOptions {
rejectUnauthorized?: boolean;
Expand Down Expand Up @@ -40,7 +39,7 @@ declare interface Config {
baseMs?: number;
delayMs?: number;
maxRetries?: number;
library?: pg.Client;
library?: typeof import("pg");
}

declare namespace ServerlessClient {
Expand Down

0 comments on commit 37f52a9

Please sign in to comment.