Commit iniziale
This commit is contained in:
15
node_modules/tedious/lib/outgoing-message-stream.d.ts
generated
vendored
Normal file
15
node_modules/tedious/lib/outgoing-message-stream.d.ts
generated
vendored
Normal file
@@ -0,0 +1,15 @@
|
||||
import { Duplex } from 'stream';
|
||||
import Debug from './debug';
|
||||
import Message from './message';
|
||||
declare class OutgoingMessageStream extends Duplex {
|
||||
packetSize: number;
|
||||
debug: Debug;
|
||||
bl: any;
|
||||
currentMessage: Message | undefined;
|
||||
constructor(debug: Debug, { packetSize }: {
|
||||
packetSize: number;
|
||||
});
|
||||
_write(message: Message, _encoding: string, callback: (err?: Error | null) => void): void;
|
||||
_read(_size: number): void;
|
||||
}
|
||||
export default OutgoingMessageStream;
|
||||
Reference in New Issue
Block a user