winner12-copywriter-mcp
Version:
MCP tool for generating social media content for winner12 AI football prediction website
26 lines • 628 B
TypeScript
/**
* 合规性验证器单元测试
* 测试内容合规验证的各种场景和边界条件
*/
import { SocialPlatform } from '../types/prediction.js';
/**
* 运行所有合规测试
*/
export declare function runComplianceTests(): {
passed: number;
failed: number;
results: Array<{
test: string;
passed: boolean;
details?: string;
}>;
};
/**
* 运行特定平台的合规测试
*/
export declare function runPlatformSpecificTests(platform: SocialPlatform): {
platform: SocialPlatform;
score: number;
issues: string[];
};
//# sourceMappingURL=compliance.test.d.ts.map