smyld-lib-common
Version:
SMYLD Javascript Core Library, contains several core APIs that benefit the developers working on SPA applications
17 lines • 526 B
JavaScript
export var RuleCondition;
(function (RuleCondition) {
RuleCondition[RuleCondition["startsWith"] = 0] = "startsWith";
RuleCondition[RuleCondition["contains"] = 1] = "contains";
RuleCondition[RuleCondition["regex"] = 2] = "regex";
})(RuleCondition || (RuleCondition = {}));
export class LogRuleImpl {
condition;
value;
level;
constructor(condition, value, level) {
this.condition = condition;
this.value = value;
this.level = level;
}
}
//# sourceMappingURL=LogRule.js.map