src/validator/rules/Rule.js
module.exports = class Rule {
  constructor(component, settings, config) {
    this.component = component;
    this.settings = settings;
    this.config = config;
  }
  check() {
  }
};
    
  
    
module.exports = class Rule {
  constructor(component, settings, config) {
    this.component = component;
    this.settings = settings;
    this.config = config;
  }
  check() {
  }
};