Commit iniziale

This commit is contained in:
Paolo A
2025-02-18 22:59:07 +00:00
commit 4bbf35cefb
6879 changed files with 623784 additions and 0 deletions

13
node_modules/tedious/lib/tedious.d.ts generated vendored Normal file
View File

@@ -0,0 +1,13 @@
import BulkLoad from './bulk-load';
import Connection, { type ConnectionAuthentication, type ConnectionConfiguration, type ConnectionOptions } from './connection';
import Request from './request';
import { ConnectionError, RequestError } from './errors';
import { TYPES } from './data-type';
import { ISOLATION_LEVEL } from './transaction';
import { versions as TDS_VERSION } from './tds-versions';
declare const library: {
name: string;
};
export declare function connect(config: ConnectionConfiguration, connectListener?: (err?: Error) => void): Connection;
export { BulkLoad, Connection, Request, library, ConnectionError, RequestError, TYPES, ISOLATION_LEVEL, TDS_VERSION };
export type { ConnectionAuthentication, ConnectionConfiguration, ConnectionOptions };