UNPKG

@sap/generator-cap-project

Version:

Creates a new SAP Cloud Application Programming Model project.

10 lines (9 loc) 359 B
export interface Flag { name: string; value?: string; /** Value came from the next token rather than being embedded after `=`. */ absorbedNext: boolean; /** Switch appeared before the git sub-command. */ isGlobal: boolean; } export declare function scopedFlags(flags: Flag[], scope: 'global' | 'task'): Generator<Flag, void, unknown>;