NextGIS Frontend
    Preparing search index...

    Interface MethodRequestOptions<Q, B, RT, ReturnUrl>

    interface MethodRequestOptions<
        Q = any,
        B = any,
        RT extends ResponseType = "json",
        ReturnUrl extends boolean = false,
    > {
        delete: DeleteRequestOptions<Q, RT>;
        get: GetRequestOptions<Q, RT, ReturnUrl>;
        patch: PatchRequestOptions<Q, RT>;
        post: PostRequestOptions<Q, B, RT>;
        put: PutRequestOptions<Q, B, RT>;
    }

    Type Parameters

    • Q = any
    • B = any
    • RT extends ResponseType = "json"
    • ReturnUrl extends boolean = false
    Index

    Properties

    Properties

    post