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) • 380 B
TypeScript
import type { Spinner } from '../utils/terminal/spinner-service';
export declare let devSpinner: Spinner | null;
/**
* Stores the reference to the dev spinner.
* Reason: to avoid circular dependency between dev and handle-build-result
* when Vite --hmr handles the UI compilation instead.
* @param spinner
*/
export declare function setDevSpinner(spinner: Spinner): Spinner;