Skip to content

Commit

Permalink
style: remove trailing whitespace (#185)
Browse files Browse the repository at this point in the history
  • Loading branch information
Fdawgs authored Nov 3, 2024
1 parent 9ec7a0a commit 06ad44a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -50,12 +50,12 @@ declare namespace fastifyPostgres {
export function transact<TResult>(
fn: (client: Pg.PoolClient) => Promise<TResult>
): Promise<TResult>;

export function transact<TResult>(
fn: (client: Pg.PoolClient) => Promise<TResult>,
cb: (error: Error | null, result?: TResult) => void
): void;

export const fastifyPostgres: FastifyPostgres
export { fastifyPostgres as default }
}
Expand Down

0 comments on commit 06ad44a

Please sign in to comment.