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) • 534 B
TypeScript
import { Command } from 'commander';
import type { Action } from '@dynatrace/openkit-js';
import type { UpdateReference } from '../update/types/types';
/** Creates migration command */
export declare function createMigrationCommand(): Command;
/** It will install deps in tmp directory and only execute migrations that are provided */
export declare function executeMigrationOnly(options: {
updateReferences: Record<string, UpdateReference>;
root: string;
skipPrompts: boolean;
rootAction?: Action;
}): Promise<void>;