@grabjs/superapp-sdk
    Preparing search index...

    Type Alias ResponseStatusCode200<T>

    Success response from the bridge SDK.

    Returned when a JSBridge method completes successfully. The result field contains the JSBridge method's data.

    type ResponseStatusCode200<T> = {
        result: T;
        status_code: 200;
    }

    Type Parameters

    • T
    Index

    Properties

    Properties

    result: T

    The result data from the JSBridge method, or undefined if no result was returned

    status_code: 200

    HTTP-style status code indicating the outcome of the JSBridge method call