/** * 检查规则 * @scope FormModule */ declare class CheckService { constructor(); /** * 检查是否为空 */ checkEmpty(value: any): boolean; } export { CheckService };