/** * @author songxiwen * @date 2020/12/14 15:40 */ import { ExpressResponseType, ExpressTraceRequestType, GettingUsableApiKeyErrorType } from './type'; export declare enum ThirdPartyMicroserviceFunction { SendSMSCode = "ThirdPartySMSService:sendSMSCode", GetCurrentExpressInfo = "ThirdPartySMSService:getCurrentExpressInfo" } export declare class ThirdPartyMicroserviceHandler { static sendSMSCode(requestBody: { applicationSmsConfigId: string; phone: string; }): Promise; static getCurrentExpressInfo(requestBody: ExpressTraceRequestType): Promise<{ code: number; data: ExpressResponseType; } | GettingUsableApiKeyErrorType>; }