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.

10 lines (9 loc) 288 B
/** * Get a list of files recursively from a directory * @internal */ export declare function getFilesRecursive( /** Directory where to look for the files */ dir: string, /** List of folders we would like to exclude when looking out for files */ omitFolders?: string[]): string[];