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.
8 lines (7 loc) • 506 B
TypeScript
import type { DynatraceApplicationManifest, AppManifestSchema } from '../../interfaces';
/**
* Validates constructed manifest against the app manifest schema.
*/
export declare function validateManifest(environmentUrl: string, manifest: DynatraceApplicationManifest): Promise<DynatraceApplicationManifest>;
/** Fetches the app manifest schema from the backend for validating the constructed manifest. */
export declare function fetchAppManifestSchema(environmentUrl: string): Promise<AppManifestSchema>;