Skip to content
Snippets Groups Projects
visibility-rule.ts 220 B
Newer Older
  • Learn to ignore specific revisions
  • export interface VisibilityRule {
    
      id: string;
      operator: Operator;
      value: string;
    }
    
    
    export const VisibilityRuleOperators = ['=', '!=', '<', '<=', '>', '>='];
    type Operator = typeof VisibilityRuleOperators[number];