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);
}

Properties

Properties

close: (() => void)

Type declaration

    • (): void
    • Returns void

Generated using TypeDoc