UNPKG

299 BTypeScriptView Raw
1import { PassThrough } from 'stream';
2declare class Message extends PassThrough {
3 type: number;
4 resetConnection: boolean;
5 ignore: boolean;
6 constructor({ type, resetConnection }: {
7 type: number;
8 resetConnection?: boolean | undefined;
9 });
10}
11export default Message;