Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions lib/odbc.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -205,6 +205,11 @@ declare namespace odbc {

function pool(connectionString: string): Promise<Pool>;
function pool(connectionObject: PoolParameters): Promise<Pool>;

const SQL_TXN_READ_UNCOMMITTED: number;
const SQL_TXN_READ_COMMITTED: number;
const SQL_TXN_REPEATABLE_READ: number;
const SQL_TXN_SERIALIZABLE: number;
}

export = odbc;