@nats-io/jetstream
    Preparing search index...

    Type Alias Discard

    Requests for messages can be terminated by the server, these notifications provide information on the number of messages and/or bytes that couldn't be satisfied by the consumer request.

    type Discard = {
        bytesLeft: number;
        messagesLeft: number;
        type: "discard";
    }
    Index

    Properties

    bytesLeft: number
    messagesLeft: number
    type: "discard"