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.

18 lines 743 B
import type { SchematicOptionObject } from '@o3r/schematics'; type SupportedSimpleTypes = 'string' | 'boolean' | 'Date' | 'number' | 'null' | 'undefined' | 'unknown'; export interface NgGenerateOperatorSchematicsSchema extends SchematicOptionObject { /** Facts services Folder */ path: string; /** Fact service name */ name: string; /** Skip the linter process which includes the run of EsLint and EditorConfig rules */ skipLinter: boolean; /** Operator with one value */ unaryOperator: boolean; /** Type of the right hand side operator */ lhsType: SupportedSimpleTypes; /** Type of the right hand side operator */ rhsType: SupportedSimpleTypes; } export {}; //# sourceMappingURL=schema.d.ts.map