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.
12 lines (11 loc) • 407 B
TypeScript
import type { Diagnostic } from './diagnostic';
import type { AllMetaFiles } from '../utils/archive/build-meta-file';
/**
* The build command
*/
export declare function build(): Promise<AllMetaFiles>;
/**
* This function fails if any diagnostics of type "error" were reported
* @param diagnostics array of diagnostics to filter
*/
export declare function filterErrors(diagnostics: Diagnostic[]): void;