is-writable-stream.d.ts 185 B

123456789
  1. import {Writable} from 'stream';
  2. /**
  3. * Check whether a value has an end
  4. * method.
  5. *
  6. * @param value
  7. */
  8. export declare function isWritableStream(value: unknown): value is Writable;