1 | import BulkLoad from './bulk-load';
|
2 | import Connection, { type ConnectionAuthentication, type ConnectionConfiguration, type ConnectionOptions } from './connection';
|
3 | import Request from './request';
|
4 | import { ConnectionError, RequestError } from './errors';
|
5 | import { TYPES } from './data-type';
|
6 | import { ISOLATION_LEVEL } from './transaction';
|
7 | import { versions as TDS_VERSION } from './tds-versions';
|
8 | declare const library: {
|
9 | name: string;
|
10 | };
|
11 | export declare function connect(config: ConnectionConfiguration, connectListener?: (err?: Error) => void): Connection;
|
12 | export { BulkLoad, Connection, Request, library, ConnectionError, RequestError, TYPES, ISOLATION_LEVEL, TDS_VERSION };
|
13 | export type { ConnectionAuthentication, ConnectionConfiguration, ConnectionOptions };
|