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.
14 lines (13 loc) • 523 B
TypeScript
import { type ResolvedCliOptions } from '../utils/config/cli-options';
import type { Diagnostic } from './diagnostic';
import type { AllMetaFiles } from '../utils/archive/build-meta-file';
/**
* The build command
* @param options
*/
export declare function build(options: ResolvedCliOptions): 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;