/// import { Writable } from "stream"; export default class VSCChannelWriteStream extends Writable implements NodeJS.WritableStream { readonly channelName: string; private readonly channel; /** * Creates an instance of VSCChannelWriteStream. * * @param {string} channelName Log to specific channel * @memberof VSCChannelWriteStream */ constructor(channelName: string); _write(chunk: any, encoding: string, callback: (error?: Error | null) => void): void; } //# sourceMappingURL=VSCChannelWriteStream.d.ts.map