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.
10 lines (9 loc) • 318 B
TypeScript
import type { BeforeBuildCallback, BeforeServeCallBack } from './hooks';
export interface DtApp {
beforeBuild: (callBack: BeforeBuildCallback) => void;
beforeServe: (callBack: BeforeServeCallBack) => void;
}
export interface DtAppPlugin {
name: string;
setup: (dtApp: DtApp) => void | Promise<void>;
}