Skip to content
Snippets Groups Projects
visibility-rule.ts 347 B
Newer Older
  • Learn to ignore specific revisions
  • export class VisibilityRule {
      id: string;
      operator: Operator;
      value: string;
    
      static operators = ['=', '!=', '<', '<=', '>', '>='];
    
      constructor(id: string, operator: Operator, value: string) {
        this.id = id;
        this.operator = operator;
        this.value = value;
      }
    }
    
    export type Operator = typeof VisibilityRule.operators[number];