@valon-technologies/gestalt
    Preparing search index...

    Interface StreamResponseSpec

    StreamResponseSpec describes a streaming operation response. The media type names the representation (for example application/x-ndjson); the item schema is optional and describes one yielded item when the stream is typed.

    interface StreamResponseSpec {
        mediaType: string;
        itemSchema?: object;
    }
    Index

    Properties

    mediaType: string
    itemSchema?: object