Skip to content

Commit

Permalink
Update pg-component.api.md
Browse files Browse the repository at this point in the history
  • Loading branch information
menduz authored Jun 19, 2023
1 parent 9a3a4f9 commit d61a520
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions etc/pg-component.api.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,9 @@ export interface IPgComponent extends IDatabase {
// @internal (undocumented)
getPool(): Pool;
// (undocumented)
query<T>(sql: string): Promise<IDatabase.IQueryResult<T>>;
query<T extends Record<string, any>>(sql: string): Promise<IDatabase.IQueryResult<T>>;
// (undocumented)
query<T>(sql: SQLStatement, durationQueryNameLabel?: string): Promise<IDatabase.IQueryResult<T>>;
query<T extends Record<string, any>>(sql: SQLStatement, durationQueryNameLabel?: string): Promise<IDatabase.IQueryResult<T>>;
// (undocumented)
start(): Promise<void>;
// (undocumented)
Expand Down

0 comments on commit d61a520

Please sign in to comment.