Skip to content

Commit

Permalink
package vers
Browse files Browse the repository at this point in the history
  • Loading branch information
benjamint08 committed Apr 6, 2024
1 parent 3fb5539 commit 38949da
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 2 deletions.
1 change: 1 addition & 0 deletions lib/instances/mongodb.d.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
declare class Mongo {
private client;
private isConnected;
connect(url: string): Promise<void>;
getCollection(db: string, col: string): Promise<any>;
getDatabase(db: string): Promise<any>;
Expand Down
1 change: 1 addition & 0 deletions lib/instances/postgres.d.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
declare class Pg {
private pool;
private isConnected;
connect(config: object): Promise<void>;
endConnection(): Promise<void>;
query(text: string, params?: any[]): Promise<any>;
Expand Down
Loading

0 comments on commit 38949da

Please sign in to comment.