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) 230 B
import { Command } from 'commander'; export declare enum AuthResult { SUCCESS = 0, ERROR = 1, TOKEN_INVALID = 2, TOKEN_REFRESHED = 3 } /** Main auth command */ export declare function createAuthCommand(): Command;