@stoked-cenv/cli
Version:
A well considered cli and Node.js library for helping manage application, infrastructure, and configuration management.
9 lines (8 loc) • 367 B
TypeScript
import { InitCommandOptions, Package } from '@stoked-cenv/lib';
import { BaseCommand } from './base.command';
export declare class InitCommand extends BaseCommand {
constructor();
parseLogLevel(val: string): string;
parseScope(val: string): string;
runCommand(passedParam: string[], options: InitCommandOptions, packages: Package[]): Promise<void>;
}