Files
sistema_combustible/backend/node_modules/tedious/lib/message.d.ts
2026-06-02 16:57:08 +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;