dt-app
Version:
The Dynatrace App Toolkit is a tool you can use from your command line to create, develop, and deploy apps on your Dynatrace environment.
15 lines (14 loc) • 573 B
TypeScript
import * as commander from 'commander';
import type { SupportedPackageManager } from '../utils/package-manager';
/**
* Creates the CLI <create> command
* @deprecated The function will be removed in 1.0
* @internal
*/
export declare function createProjectCommand(): commander.Command;
/**
* Returns the correct package-manager by a prompt and/or based on whether its installed
* @deprecated The function will be removed in 1.0
* @internal
*/
export declare function getPackageManager(packageManager?: string, skipPrompt?: boolean): Promise<SupportedPackageManager>;