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.

8 lines (7 loc) 240 B
/** * Joins url parts or paths in a unix style regardless of the platform * Needed to join url parts on windows for example */ export declare function unixJoin(parts: string[] | string, options?: { keepFullPath: boolean; }): string;