/** * !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! * 涉及到 UESRules、standardRules 的 checkItem 和 weight 变更 * 需要更新 git@gitlab.alibaba-inc.com:sitemeta/teamix-app-test.git * designRules.ts */ interface BaseRule { checkItem: string; title: string; ruleInfo: any[]; weight: number; checkType: string; } declare const UESRules: BaseRule[]; declare const standardRules: BaseRule[]; declare const UES_MAP: any, STANDARD_MAP: any; export { UESRules, standardRules, UES_MAP, STANDARD_MAP };