From 1693a17011195c353e5bc1d93d9c26ac48624a0b Mon Sep 17 00:00:00 2001 From: Jake Malone Date: Mon, 4 Apr 2022 09:06:27 -0700 Subject: [PATCH] fix: resolve missing ConnectionOptions export in index.ts (#8850) Closes: #8837 --- src/index.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/index.ts b/src/index.ts index 4f0f24c42e..dd7a16515d 100644 --- a/src/index.ts +++ b/src/index.ts @@ -131,6 +131,7 @@ export * from "./driver/sqlserver/MssqlParameter" // export * from "./data-source"; export { ConnectionOptionsReader } from "./connection/ConnectionOptionsReader" +export { ConnectionOptions } from "./connection/ConnectionOptions" export { DataSource } from "./data-source/DataSource" export { Connection } from "./connection/Connection" export { ConnectionManager } from "./connection/ConnectionManager"