@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.
14 lines • 407 B
TypeScript
import type { FactDefinitions } from '../engine/index';
/**
* Interface that contains the portalFacts definition
* This is one of the reserved fact names, it won't be part of metadata
*/
export interface PortalFacts extends FactDefinitions {
/**
* Map of facts coming from the portal
*/
portalFacts: {
[key: string]: string;
};
}
//# sourceMappingURL=reserved.facts.d.ts.map