(state: CaptchaState)
| 691 | |
| 692 | interface CaptchaState { |
| 693 | answer: string; // 正确答案 |
| 694 | question: string; // 题目 / 关键词(用于刷新消息) |
| 695 | isQA: boolean; // TEXT 模式:是否为随机问答(false = keyword 模式) |
| 696 | tries: number; // 已尝试次数 |
| 697 | timer: CaptchaTimer | null; |
| 698 | msgIds: number[]; // 所有验证消息 ID |
| 699 | mode: CaptchaMode; // 当前验证模式 |
| 700 | generation: number; |
| 701 | } |
no outgoing calls
no test coverage detected