addon-tools-el/writable-buffer.d.ts

7 lines
129 B
TypeScript

import type { Writable } from 'stream';
export class WritableBuffer extends Writable {
constructor();
get(): Buffer;
};