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.
40 lines (39 loc) • 1.03 kB
TypeScript
/**
* A single file inside a file map
* @internal
* @deprecated The type will be removed in 1.0
*/
export interface File {
content: Buffer;
filename?: string;
mode?: keyof typeof FileMode;
sourceMap?: Buffer;
}
/**
* An in memory file tree representation interface
* @internal
* @deprecated The type will be removed in 1.0
*/
export type FileMap = Record<string, File>;
/**
* @internal
* @deprecated The constant will be removed in 1.0
*/
export declare const FileMode: {
created: string;
updated: string;
deleted: string;
copied: string;
};
/**
* Retrieves the output .js and .map file for a given TypeScript input (can be used as an index in the FileMap)
* Returns an empty string for cssFileName and cssFileMapName in case it does not exist.
* @internal
* @deprecated the function will be removed in 1.0
*/
export declare function getCompiledFileName(inputFileName: string): {
jsFileName: string;
mapFileName: string;
cssFileName: string;
cssFileMapName: string;
};