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.

9 lines (8 loc) 281 B
import { Command } from 'commander'; export type CustomCommanderOption = { flag: string; description: string; defaultValue: string | boolean | undefined; }; /** Creates the commander program with all dt-app commands */ export declare function createProgram(): Command;