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.

11 lines (10 loc) 440 B
import type { PluginBuild } from 'esbuild'; import { BuildFeatureType, type BuildList } from '../bundler/definitions'; /** Plugin for canceling build if delete action happens and cleaning up wrapped files */ export declare function cancelBuildOnActionRemovePlugin(options: { root: string; sourceRoot?: string; }, buildFeatureType: BuildFeatureType, buildList: BuildList): { name: string; setup(build: PluginBuild): void; };