• Compression Streams API
  • Console and Debugging
  • DOM APIs
  • DOM Events
  • Encoding API
  • Fetch API
  • Fleek Node API
  • Observability
  • Scheduling
  • Streams API
  • Timers
  • Typed Arrays
  • Web APIs
  • Web Crypto API
  • Web File API
  • WebAssembly
  • WebGPU
  • WebSockets
  • Uncategorized
  • view all 376 symbols
  • Fleek Runtime APIs
  • Streams API
    • WritableStream
interface WritableStream

This Streams API interface provides a standard abstraction for writing streaming data to a destination, known as a sink. This object comes with built-in backpressure and queuing.

Type Parameters

W = any

Properties

readonly
locked: boolean

Methods

abort(reason?: any): Promise<void>
close(): Promise<void>
getWriter(): WritableStreamDefaultWriter<W>
variable WritableStream

Properties

readonly
prototype: WritableStream

Document Navigation

  • Type Parameters
    • W
  • Properties
    • locked
  • Methods
    • abort
    • close
    • getWriter
  • Properties
    • prototype