UNPKG

@stoked-cenv/cli

Version:

A well considered cli and Node.js library for helping manage application, infrastructure, and configuration management.

11 lines (10 loc) 427 B
import { Package } from '@stoked-cenv/lib'; import { BaseCommand } from './base.command'; export declare class ExecCommand extends BaseCommand { constructor(); parseLogLevel(val: string): string; parseEnvironment(val: string): string; parseModule(val: string): string; parseSubCommand(val: string, val2: string): string; runCommand(params: string[], options: any, packages: Package[]): Promise<void>; }