UNPKG

516 BTypeScriptView Raw
1export declare class CaptchaModel {
2 captchaImg: string;
3 captchaCode: string;
4 constructor({ captchaImg, captchaCode }?: {
5 captchaImg?: string;
6 captchaCode?: string;
7 });
8}
9export declare namespace UpsertCaptchaApiModel {
10 class Request {
11 Captcha: CaptchaModel;
12 constructor(initValue?: Partial<UpsertCaptchaApiModel.Request>);
13 getRequestBody(): string;
14 }
15 class Response {
16 Result: CaptchaModel;
17 constructor();
18 }
19}