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.
8 lines (7 loc) • 414 B
TypeScript
import type { PluginBuild } from 'esbuild';
import type { BuildFeatureType, WatchCallback } from '../bundler/definitions';
/** Plugin for handling build result, take cares of duration calculation, spinner and logger states, and invoking callback */
export declare function handleBuildResult(featureType: BuildFeatureType, buildCallback?: WatchCallback): {
name: string;
setup(build: PluginBuild): void;
};