@o3r/core
Version:
Core of the Otter Framework
12 lines • 507 B
TypeScript
import type { SchematicOptionObject } from '@o3r/schematics';
export interface NgGenerateUpdateSchematicsSchema extends SchematicOptionObject {
/** Project name */
projectName?: string | undefined;
/** Version to apply the ngUpdate */
version: string;
/** Source directory containing the schematics */
path?: string | undefined;
/** Skip the linter process which includes the run of EsLint and EditorConfig rules */
skipLinter: boolean;
}
//# sourceMappingURL=schema.d.ts.map