@o3r/core
Version:
Core of the Otter Framework
14 lines • 543 B
TypeScript
import type { SchematicOptionObject } from '@o3r/schematics';
export interface NgGenerateServiceSchematicsSchema extends SchematicOptionObject {
/** Project name */
projectName?: string | undefined;
/** Service name */
name: string;
/** Name of the service feature */
featureName: string;
/** Directory containing the services */
path?: string | undefined;
/** Skip the linter process which includes the run of EsLint and EditorConfig rules */
skipLinter: boolean;
}
//# sourceMappingURL=schema.d.ts.map