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.

11 lines 302 B
import type { FactDefinitions } from '../../engine'; /** * Operator facts that provide the current time */ export interface CurrentTimeFacts extends FactDefinitions { /** * The current time as a timestamp */ o3rCurrentTime: number; } //# sourceMappingURL=current-time.facts.d.ts.map