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.
13 lines (12 loc) • 334 B
TypeScript
/**
* Converts string to dot case.
* @param string
*/
export declare function dotCase(string: string): string;
/**
* Generates an app id from the given name and namespace
* @param appName
* @param nameSpace
* @returns The generated app id
*/
export declare function generateAppId(appName: string, nameSpace?: string): string;