Files
server_debian_macro/node_modules/tedious/lib/message.d.ts

12 lines
299 B
TypeScript
Raw Normal View History

2025-02-18 22:59:07 +00:00
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;