Membrane React - v0.2.1
    Preparing search index...

    Interface RestApiClientInput

    interface RestApiClientInput {
        path: string;
        method: HttpRequestMethod;
        query?: Record<string, string>;
        data?: any;
        headers?: Record<string, string>;
        responseType?: "arraybuffer" | "stream";
        returnFullResponse?: boolean;
    }
    Index

    Properties

    path: string
    query?: Record<string, string>
    data?: any
    headers?: Record<string, string>
    responseType?: "arraybuffer" | "stream"
    returnFullResponse?: boolean