Binance Connector JS
    Preparing search index...

    Type Alias WebsocketApiResponse<T>

    Represents the response from a WebSocket API.

    type WebsocketApiResponse<T> = {
        data: NonNullable<ExtractWebsocketApiResponse<T>>;
        rateLimits?: WebsocketApiRateLimit[];
    }

    Type Parameters

    • T

      The type of the WebSocket API response.

    Index

    Properties

    Properties

    data: NonNullable<ExtractWebsocketApiResponse<T>>

    The extracted, non-null data from the WebSocket API response.

    rateLimits?: WebsocketApiRateLimit[]

    An optional array of rate limit information for the response.