UNPKG

580 BTypeScriptView Raw
1/// <reference types="node" />
2import { Writable } from "stream";
3export default class VSCChannelWriteStream extends Writable implements NodeJS.WritableStream {
4 readonly channelName: string;
5 private readonly channel;
6 /**
7 * Creates an instance of VSCChannelWriteStream.
8 *
9 * @param {string} channelName Log to specific channel
10 * @memberof VSCChannelWriteStream
11 */
12 constructor(channelName: string);
13 _write(chunk: any, encoding: string, callback: (error?: Error | null) => void): void;
14}
15//# sourceMappingURL=VSCChannelWriteStream.d.ts.map
\No newline at end of file