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.

12 lines (11 loc) 418 B
import { Command } from 'commander'; import { PAYLOAD_DESCRIPTION, PAYLOAD_FLAG } from './global-options'; export type CustomCommanderOption = { flag: string; description: string; defaultValue: string | boolean | undefined; envVar?: string; }; export { PAYLOAD_FLAG, PAYLOAD_DESCRIPTION }; /** Creates the commander program with all dt-app commands */ export declare function createProgram(): Command;