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.
14 lines (13 loc) • 504 B
TypeScript
import type { CliOptions } from '../config/cli-options';
/**
* Sends app config metrics
* @param cliOptions
*/
export declare function sendAppConfigMetrics(cliOptions: CliOptions): Promise<void>;
/**
* Returns object properties as array of xpath strings
* @param obj - Any object supported, but it is tailored for the CliOptions
* @param prefix - Current prefix
* @returns
*/
export declare function getUsedConfigsAsXpath(obj: CliOptions | object, list?: Set<string>, prefix?: string): string[];