UNPKG

@o3r/apis-manager

Version:

This module provides services to help you communicate with your APIs. Its responsibility is to provide an API configuration to a service factory so that it could instantiate an API with the right configurations. It contains a default configuration and a m

17 lines 690 B
import type { SchematicOptionObject } from '@o3r/schematics'; export interface NgAddSchematicsSchema extends SchematicOptionObject { /** Project name */ projectName?: string | undefined; /** Skip the linter process which includes the run of EsLint and EditorConfig rules */ skipLinter: boolean; /** Skip the install process */ skipInstall: boolean; /** Use a pinned version for otter packages */ exactO3rVersion?: boolean; /** * Skip the code sample generated in application to register the ApiManager * If `false`, a dependency to @ama-sdk/client-fetch will be added */ skipCodeSample?: boolean; } //# sourceMappingURL=schema.d.ts.map