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) • 527 B
TypeScript
import type { BuildMode } from './action-build-watcher';
import { type CustomBuildOptions } from './utils';
import type { CompilationResult } from '../compile';
/** Starts esbuild process in different modes */
export declare function buildFunctions(buildMode: BuildMode, options: CustomBuildOptions): Promise<CompilationResult>;
/** Check if actions already exist with the same function name */
export declare function validateFunctionNameConflict(functionFilePaths: string[], root: string, sourceRoot: string): Promise<void>;