UNPKG

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.

22 lines (21 loc) 591 B
import type { FileMap } from './file-map'; interface Template { name: string; description: string; templateDir: string; } /** Get a list of all available embedded templates */ export declare function getAvailableEmbeddedTemplates(resolver?: RequireResolve): Promise<Template[]>; /** Load embedded templates */ export declare function loadEmbeddedTemplates(options: { templateDir: string; destFolder?: string; data?: { [key: string]: string; }; relativeTo?: string; prettierConfig?: { [key: string]: unknown; }; }): FileMap; export {};