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) • 309 B
TypeScript
import type { Action, ResolvedAction } from './cli-options';
/**
* Either returns the resolved actions or throws when one or more are invalid.
* @param actions
*/
export declare function validateActions(actions: Action[], options: {
root: string;
actionsDir: string;
}): Promise<ResolvedAction>[];