Build
Docs
Reference
Guides
Blog
Discord
/
node:stream
/
default
/
ReadableOptions
P
autoDestroy
P
construct
P
destroy
P
emitClose
P
encoding
P
highWaterMark
P
objectMode
P
read
P
signal
Search the reference...
/
Build
Docs
Reference
Guides
Blog
Discord
/
node:stream
/
default
/
ReadableOptions
P
autoDestroy
P
construct
P
destroy
P
emitClose
P
encoding
P
highWaterMark
P
objectMode
P
read
P
signal
interface
stream.default.ReadableOptions
interface
ReadableOptions
<
T
extends
Readable
=
Readable
>
autoDestroy
?
:
boolean
construct
?
:
(
this
:
T
,
callback
:
(
error
?
:
null
|
Error
)
=>
void
)
=>
void
destroy
?
:
(
this
:
T
,
error
:
null
|
Error
,
callback
:
(
error
?
:
null
|
Error
)
=>
void
)
=>
void
emitClose
?
:
boolean
encoding
?
:
BufferEncoding
highWaterMark
?
:
number
objectMode
?
:
boolean
read
?
:
(
this
:
T
,
size
:
number
)
=>
void
signal
?
:
AbortSignal