UNPKG

@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 572 B
import type { MetadataComparator } from '@o3r/extractors'; import type { MetadataFact } from '../../rules-engine-extractor/helpers'; /** * Interface describing a ruleFact migration element */ export interface MigrationRuleFactMetadata { /** Name of the fact */ name: string; } /** * Comparator used to compare one version of ruleFact metadata with another */ export declare const ruleFactMetadataComparator: Readonly<MetadataComparator<MetadataFact, MigrationRuleFactMetadata, MetadataFact[]>>; //# sourceMappingURL=rulefact-metadata-comparison.helper.d.ts.map