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.

11 lines (10 loc) 387 B
/** Save the current command to the history */ export declare function addArgsToHistory(): void; /** Reads and caches the command history */ export declare function initHistory(): void; /** Retrieve the CLI command history */ export declare function getHistory(): string[]; /** Retrieve the previous CLI command */ export declare function getPreviousCommand(): { command: string; };