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.

15 lines (14 loc) 496 B
import { type TreeNode } from '../utils/layout'; /** Create action script */ export declare function generateAction(options: { /** The name of the action. */ name: string; /** Specifies in which folder the action should be generated in */ actionsDir: string; /** Has the current working directory */ cwd: string; /** The source root directory */ sourceRoot: string; /** Whether to write to the filesystem or not */ dryRun?: boolean; }): Promise<TreeNode>;