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.
25 lines (24 loc) • 836 B
TypeScript
/**
* Abstraction on yarn install command
* @param packages The package we want to install
* @returns The output of the yarn upgrade
*/
export declare function install(packages: string): Promise<string>;
/**
* Abstraction on yarn uninstall command
* @param packages The package we want to uninstall
* @returns The output of the yarn remove
*/
export declare function uninstall(packages: string): Promise<string>;
/**
* Abstraction on yarn remove command
* @param packages The package we want to remove
* @returns The output of the yarn uninstall
*/
export declare function remove(packages: string): Promise<string>;
/**
* Abstraction on yarn upgrade command
* @param packages The package we want to upgrade
* @returns The output of the yarn upgrade
*/
export declare function upgrade(packages: string): Promise<string>;