@grandlinex/swagger-mate
    Preparing search index...

    Interface ConHandle

    interface ConHandle {
        delete<T>(
            url: string,
            config?: ConHandleConfig,
        ): Promise<ConHandleResponse<T>>;
        get<T>(
            url: string,
            config?: ConHandleConfig,
        ): Promise<ConHandleResponse<T>>;
        patch<T, J>(
            url: string,
            body?: J,
            config?: ConHandleConfig,
        ): Promise<ConHandleResponse<T>>;
        post<T, J>(
            url: string,
            body?: J,
            config?: ConHandleConfig,
        ): Promise<ConHandleResponse<T>>;
    }
    Index

    Methods

    post