@o3r/rules-engine
Version:
This module provides a rule engine that can be executed on your Otter application to customize your application (translations, placeholders and configs) based on a json file generated by your CMS.
17 lines (14 loc) • 562 B
TypeScript
import { RulesEngineRunnerService } from '@o3r/rules-engine';
/** Jasmine Fixture class for RulesEngineRunnerService */
declare class RulesEngineRunnerServiceFixture implements Readonly<Partial<RulesEngineRunnerService>> {
/** @inheritDoc */
upsertFacts: jasmine.Spy;
/** @inheritDoc */
upsertOperators: jasmine.Spy;
/** @inheritDoc */
enableRuleSetFor: jasmine.Spy;
/** @inheritDoc */
disableRuleSetFor: jasmine.Spy;
}
export { RulesEngineRunnerServiceFixture };
//# sourceMappingURL=o3r-rules-engine-fixtures-jasmine.d.ts.map