UNPKG

312 BTypeScriptView Raw
1export interface SpamResponse {
2 message: 'feedback_required';
3 spam: true;
4 feedback_title: string;
5 feedback_message: string;
6 feedback_url: string;
7 feedback_appeal_label: string;
8 feedback_ignore_label: string;
9 feedback_action: string;
10 status: 'fail';
11 error_type?: string;
12}