UNPKG

@o3r/core

Version:
15 lines 551 B
import type { SchematicOptionObject } from '@o3r/schematics'; /** * Properties associated to an Otter simple sync store */ export interface NgGenerateSimpleSyncStoreSchematicsSchema extends SchematicOptionObject { /** Directory containing the stores */ path?: string | undefined; /** Project name */ projectName?: string | undefined; /** Store name */ storeName: string; /** Skip the linter process which includes the run of EsLint and EditorConfig rules */ skipLinter: boolean; } //# sourceMappingURL=schema.d.ts.map