import type { SchematicOptionObject } from '@o3r/schematics'; export interface NgGenerateMockSchematicsSchema extends SchematicOptionObject { /** Name of the api model to generate */ apiModel: string; /** True if the api model has a property id */ identified: boolean; /** Directory in which the mock-factory will be created */ path: string; /** Package name of the sdk */ packageName: string; } //# sourceMappingURL=schema.d.ts.map