Skip to content

Commit

Permalink
ref #24, FIXEME: needs contributing on the Proxy chain
Browse files Browse the repository at this point in the history
  • Loading branch information
TheNorthMemory committed Jun 8, 2021
1 parent 1d2ba8c commit da50f14
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -792,6 +792,7 @@ export namespace WechatpayAxiosPlugin {
* @param {any} config - The request configuration
* @returns {PromiseLike} - The `AxiosPromise`
*/
// @ts-ignore: FIXEME, needs contributing
GET<T = any, R = AxiosResponse<T>>(config?: AxiosRequestConfig): Promise<R>;

/**
Expand All @@ -800,6 +801,7 @@ export namespace WechatpayAxiosPlugin {
* @param {any} config - The request configuration
* @returns {PromiseLike} - The `AxiosPromise`
*/
// @ts-ignore: FIXEME, needs contributing
POST<T = any, R = AxiosResponse<T>>(data?: any, config?: AxiosRequestConfig): Promise<R>;

/**
Expand All @@ -808,6 +810,7 @@ export namespace WechatpayAxiosPlugin {
* @param {any} config - The request configuration
* @returns {PromiseLike} - The `AxiosPromise`
*/
// @ts-ignore: FIXEME, needs contributing
PUT<T = any, R = AxiosResponse<T>>(data?: any, config?: AxiosRequestConfig): Promise<R>;

/**
Expand All @@ -816,13 +819,15 @@ export namespace WechatpayAxiosPlugin {
* @param {any} config - The request configuration
* @returns {PromiseLike} - The `AxiosPromise`
*/
// @ts-ignore: FIXEME, needs contributing
PATCH<T = any, R = AxiosResponse<T>>(data?: any, config?: AxiosRequestConfig): Promise<R>;

/**
* @property {function} DELETE - The alias of the HTTP 'DELETE' request
* @param {any} config - The request configuration
* @returns {PromiseLike} - The `AxiosPromise`
*/
// @ts-ignore: FIXEME, needs contributing
DELETE<T = any, R = AxiosResponse<T>>(config?: AxiosRequestConfig): Promise<R>;

/**
Expand All @@ -831,6 +836,7 @@ export namespace WechatpayAxiosPlugin {
* @param {any} config - The request configuration
* @returns {PromiseLike} - The `AxiosPromise`
*/
// @ts-ignore: FIXEME, needs contributing
get<T = any, R = AxiosResponse<T>>(config?: AxiosRequestConfig): Promise<R>;

/**
Expand All @@ -839,6 +845,7 @@ export namespace WechatpayAxiosPlugin {
* @param {any} config - The request configuration
* @returns {PromiseLike} - The `AxiosPromise`
*/
// @ts-ignore: FIXEME, needs contributing
post<T = any, R = AxiosResponse<T>>(data?: any, config?: AxiosRequestConfig): Promise<R>;

/**
Expand All @@ -847,6 +854,7 @@ export namespace WechatpayAxiosPlugin {
* @param {any} config - The request configuration
* @returns {PromiseLike} - The `AxiosPromise`
*/
// @ts-ignore: FIXEME, needs contributing
put<T = any, R = AxiosResponse<T>>(data?: any, config?: AxiosRequestConfig): Promise<R>;

/**
Expand All @@ -855,13 +863,15 @@ export namespace WechatpayAxiosPlugin {
* @param {any} config - The request configuration
* @returns {PromiseLike} - The `AxiosPromise`
*/
// @ts-ignore: FIXEME, needs contributing
patch<T = any, R = AxiosResponse<T>>(data?: any, config?: AxiosRequestConfig): Promise<R>;

/**
* @property {function} delete - The alias of the HTTP 'DELETE' request
* @param {any} config - The request configuration
* @returns {PromiseLike} - The `AxiosPromise`
*/
// @ts-ignore: FIXEME, needs contributing
delete<T = any, R = AxiosResponse<T>>(config?: AxiosRequestConfig): Promise<R>;

[key: string]: this
Expand Down

0 comments on commit da50f14

Please sign in to comment.