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) • 609 B
TypeScript
import type { Metafile } from 'esbuild';
export type AllMetaFiles = {
ui?: Metafile;
functions?: Metafile;
actions?: Metafile;
widgets?: Metafile;
};
export declare const BUILD_META_FILE_NAME = "build-meta-file.json";
/** Writes the passed content to <app-root>/build/meta-file */
export declare function writeBuildMetaInformation(appRoot: string, content: AllMetaFiles): Promise<void>;
/** Reads the content of the build-meta-file.json and returns it. If the file is not present it throws an error. */
export declare function readBuildMetaInformation(appRoot: string): Promise<AllMetaFiles>;