@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.
12 lines • 464 B
TypeScript
import type { SchematicOptionObject } from '@o3r/schematics';
export interface NgGenerateFactsServiceSchematicsSchema extends SchematicOptionObject {
/** Project name */
projectName?: string | undefined;
/** 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;
}
//# sourceMappingURL=schema.d.ts.map