@meridian/web-sdk
    Preparing search index...

    Interface Stream

    An open tag stream that can be closed. Returned by API.openStream.

    const api = new MeridianSDK.API({
    // ...
    });

    const stream = api.openStream({
    // ...
    });

    stream.close();
    interface Stream {
        close: () => void;
    }
    Index

    Properties

    Properties

    close: () => void