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.
24 lines (23 loc) • 551 B
TypeScript
export declare enum OperatingSystem {
Windows = "windows",
MacOS = "macos",
Other = "other"
}
export type UICommandKeyBindings = string[] | {
[key in OperatingSystem]?: string[];
};
export type UICommand = {
id: string;
description: string;
/** When not given, command is Informational only */
keyBindings?: UICommandKeyBindings;
};
export type UICommandCategory = {
id: string;
name: string;
commands: UICommand[];
};
/** Experimental */
export type UiCommands = {
categories?: UICommandCategory[];
};