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.

9 lines (8 loc) 485 B
import type { ResolvedChanges, UpdateReference } from './types/types'; /** Shows all the breaking changes in form of a console.table */ export declare function getBreakingChangesMessage(allChanges: ResolvedChanges, updateReferences: Record<string, UpdateReference>, /** Width of the table columns 1 and 2. Min width for packageColumnWidth is 40 and for breakingChangeColumnWidth it's 60 */ options: { packageColumnWidth: number; breakingChangeColumnWidth: number; }): string;