UNPKG

soda-angular

Version:
12 lines (11 loc) 272 B
export class WhereOperator { constructor(operator) { if (!operator) { throw new Error("Operator type must be provided"); } this.Operator = operator; } toString() { return this.Operator.toString(); } }