"...git@scm.cms.hu-berlin.de:iqb/verona-modules-aspect.git" did not exist on "27c2a7ece03a2a9b29ae8beb8853aea0ecbc6a78"
Newer
Older
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];