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.

13 lines (12 loc) 499 B
import { type TreeNode } from '../utils/layout'; /** Create action script */ export declare function generateWidget(options: { /** Has the name of the action. Can also be a path with the name (e.g actions/hello) */ name: string; /** Specifies in which folder the action widget should be generated in */ actionsDir: string; /** Has the current working directory */ cwd: string; /** Whether to write to the filesystem or not */ dryRun?: boolean; }): Promise<TreeNode>;