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) 492 B
import type { FileMap } from '@dynatrace/devkit'; import type { MigrationChange } from './types/types'; /** Runs the migrations for all the apps listed in the apps record. */ export declare function runMigrations( /** App paths (monorepo support) */ apps: Record<string, FileMap>, /** Breaking changes containing migrations */ migrationChanges: MigrationChange[], /** The package name */ packageName: string, /** The package path */ packagePath: string): Promise<Record<string, FileMap>>;