Documentation - v1.2.0-alpha.3
    Preparing search index...

    Interface InvokeResponse<T>

    Represents the response of an invoke request.

    interface InvokeResponse<T = any> {
        body?: T;
        status: number;
    }

    Type Parameters

    • T = any
    Index

    Properties

    Properties

    body?: T

    The optional body of the response.

    status: number

    The status code of the response.