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.
30 lines (29 loc) • 727 B
TypeScript
import type { FileMap } from './file-map';
interface Template {
name: string;
description: string;
templateDir: string;
}
/**
* Get a list of all available embedded templates
* @deprecated The function will be removed in 1.0
* @internal
*/
export declare function getAvailableEmbeddedTemplates(resolver?: RequireResolve): Promise<Template[]>;
/**
* Load embedded templates
* @deprecated The function will be removed in 1.0
* @internal
*/
export declare function loadEmbeddedTemplates(options: {
templateDir: string;
destFolder?: string;
data?: {
[key: string]: string;
};
relativeTo?: string;
prettierConfig?: {
[key: string]: unknown;
};
}): FileMap;
export {};