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) 412 B
import type { UpdateReference } from './types/types'; import type { Action } from '@dynatrace/openkit-js'; /** Update dynatrace packages script */ export declare function update(options: { /** The root path */ root: string; /** Update references */ updateReferences: Record<string, UpdateReference>; skipInstall: boolean; skipPrompts: boolean; rootAction?: Action; }): Promise<void>;