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.
11 lines (10 loc) • 478 B
TypeScript
import type { Diagnostic } from '../build/diagnostic';
/** Prints the given diagnostics in the console */
export declare function logDiagnostics(diagnostics: Diagnostic[]): void;
/** Creates a nicely formatted diagnostic header */
export declare const prettyConsoleError: (diagnostic: Diagnostic) => string;
/**
* Returns a HTML Markup from given prettyError.
* If conversion failed returns false.
*/
export declare const prettyHtmlError: (diagnostic: Diagnostic) => string;