Skip to content

Commit

Permalink
fix(): Improve Config.library typings
Browse files Browse the repository at this point in the history
  • Loading branch information
perrin4869 committed May 30, 2022
1 parent 5d149bf commit e18f95e
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 e18f95e

Please sign in to comment.