kkrpc
    Preparing search index...

    Interface StdioPlatformOptions

    Streams to compose into a stdio platform.

    interface StdioPlatformOptions {
        lifecycle?: StreamLifecycleLike;
        readable: ReadableLike;
        writable: WritableLike;
    }

    Hierarchy (View Summary)

    Index

    Properties

    lifecycle?: StreamLifecycleLike

    Optional lifecycle event source enabling onClose on the transport.

    readable: ReadableLike

    Readable stream that emits incoming JSON-line data.

    writable: WritableLike

    Writable stream that receives outgoing JSON-line data.