From 85caea33248b76b2e48b43a3493e610b6f42e5b7 Mon Sep 17 00:00:00 2001 From: killagu Date: Tue, 26 Mar 2024 22:24:19 +0800 Subject: [PATCH] fix: exports types --- src/client.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/client.ts b/src/client.ts index e096c18..caa8f9d 100644 --- a/src/client.ts +++ b/src/client.ts @@ -10,6 +10,7 @@ import literals from './literals'; import channels from './channels'; import type { ConnectionMessage, ConnectionEnqueueMessage } from './channels'; import { RDSPoolConfig } from './PoolConfig'; +export * from './types'; interface PoolPromisify extends Omit { query(sql: string): Promise;