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

19
node_modules/tedious/lib/incoming-message-stream.d.ts generated vendored Normal file
View File

@@ -0,0 +1,19 @@
import { Transform } from 'stream';
import Debug from './debug';
import Message from './message';
import { ConnectionError } from './errors';
/**
IncomingMessageStream
Transform received TDS data into individual IncomingMessage streams.
*/
declare class IncomingMessageStream extends Transform {
debug: Debug;
bl: any;
currentMessage: Message | undefined;
constructor(debug: Debug);
pause(): this;
resume(): this;
processBufferedData(callback: (err?: ConnectionError) => void): void;
_transform(chunk: Buffer, _encoding: string, callback: () => void): void;
}
export default IncomingMessageStream;