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.
13 lines (12 loc) • 473 B
TypeScript
import type { File, FileMap } from '@dynatrace/devkit';
/**
* Writes the file map to the filesystem.
* Only updated, created or deleted files are written.
*/
export declare function writeChanges(
/** The project root path */
root: string,
/** The file map */
fileMap: FileMap): Promise<void>;
/** Prints a formatted string for a file inside the file map with its status and its size */
export declare function formattedModeString(filepath: string, file: File): string;