UNPKG

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.

7 lines (6 loc) 418 B
/** Returns the package url e.g. https://artifactory.lab.dynatrace.org/artifactory/api/npm/npm-dynatrace-release-v/dt-app/-/dt-app-0.126.0.tgz */ export declare function getNpmViewOutput(packageName: string, root: string): Promise<string>; /** Fetching a json file and returns the content of response.json() */ export declare function downloadJsonContent<T = { [key: string]: unknown; }>(url: string): Promise<T>;