Files
server_debian_macro/node_modules/tedious/lib/message.d.ts
2025-02-18 22:59:07 +00:00

12 lines
299 B
TypeScript

import { PassThrough } from 'stream';
declare class Message extends PassThrough {
type: number;
resetConnection: boolean;
ignore: boolean;
constructor({ type, resetConnection }: {
type: number;
resetConnection?: boolean | undefined;
});
}
export default Message;