UNPKG

@sap/generator-cap-project

Version:

Creates a new SAP Cloud Application Programming Model project.

14 lines (13 loc) 494 B
import type { ConfigScope } from '../args/parse-argv.types'; import { type Flag } from '../flags/flags.helpers'; import type { ConfigOperation } from './config.types'; export declare function detectConfigAction(flags: Flag[], positionals: string[]): ConfigOperation | null; export declare function toOperation(scope: ConfigScope, operation: ConfigOperation): { key: string; value: string; scope: ConfigScope; } | { key: string; scope: ConfigScope; value?: undefined; };