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.

18 lines (17 loc) 557 B
/** * Get the filename without extension for a given path * @param path to a file * @returns filename without extension */ export declare function getFileName(path: string): string; /** * Removes a file or directory if it exists * @param path to a file or directory */ export declare function rm(path: string): void; /** * Creates a folder, if it does not exist * @remark not real mkdir -p! only one level! To have multi-level we should use the package node-mkdirp * @param path folder path */ export declare function mkdirp(path: string): void;