easy-api-client
Version:
开源项目服务端api框架easy-spring-boot-api的typescript客户端api对接工具包
14 lines (13 loc) • 675 B
TypeScript
import { ApiAfterHandler, ApiDesc, ApiOptions } from "../ApiClient";
import { AxiosResponse } from "axios";
export declare class ApiCheckSignAfterHandler implements ApiAfterHandler {
static newInstance(): ApiAfterHandler;
convertToSignParams(signParams: any, key: string, value: any): void;
handle(api: ApiDesc, options: ApiOptions, response: AxiosResponse<any, any>): AxiosResponse<any, any>;
order(): number;
}
export declare class ApiDecryptAfterHandler implements ApiAfterHandler {
static newInstance(): ApiAfterHandler;
handle(api: ApiDesc, options: ApiOptions, response: AxiosResponse<any, any>): AxiosResponse<any, any>;
order(): number;
}